Skip to content

Commit

Permalink
fix: rename sentry dsn env variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh committed Dec 19, 2022
1 parent 00a0c15 commit dc97573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const generateSentryConfig = (): SentryConfigType => {
}

return {
dsn: (!window.Cypress && process.env.SENTRY_DSN) || '',
dsn: (!window.Cypress && process.env.REACT_APP_SENTRY_DSN) || '',
environment: SENTRY_ENVIRONMENT,
tracesSampleRate: SENTRY_TRACE_SAMPLE_RATE,
};
Expand Down

0 comments on commit dc97573

Please sign in to comment.