Skip to content

Commit

Permalink
chore: remove unnecessary assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
swouf committed May 27, 2024
1 parent 503ff31 commit d94fc5a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/config/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,12 @@ export const generateSentryConfig = (): SentryConfigType => {
case 'production':
SENTRY_ENVIRONMENT = 'production';
SENTRY_TRACE_SAMPLE_RATE = 0.1;
SENTRY_REPLAY_SAMPLE_RATE = 0.1;
break;
case 'test':
SENTRY_TRACE_SAMPLE_RATE = 0.0;
SENTRY_REPLAY_SAMPLE_RATE = 0.0;
break;
case 'development':
SENTRY_TRACE_SAMPLE_RATE = 1.0;
SENTRY_REPLAY_SAMPLE_RATE = 1.0;
break;
default:
Expand Down

0 comments on commit d94fc5a

Please sign in to comment.