Skip to content

Commit

Permalink
Sentry: drop unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbeardsley committed Feb 8, 2024
1 parent e063bef commit 02ac56c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/sentry.client.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SENTRY_SAMPLING_ENABLED, VERCEL_ENV } from '@config/env';
import { isCurrentProductionDeployment } from '@helpers/vercel-helpers';
// import { isCurrentProductionDeployment } from '@helpers/vercel-helpers';
import { SentryErrorIntegration } from '@ifixit/sentry';
import { BrowserTracing } from '@sentry/browser';
import * as Sentry from '@sentry/nextjs';
Expand Down
2 changes: 1 addition & 1 deletion frontend/sentry.edge.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SentryErrorIntegration } from './../packages/sentry/index';
import { SENTRY_SAMPLING_ENABLED, VERCEL_ENV } from '@config/env';
import { isCurrentProductionDeployment } from '@helpers/vercel-helpers';
// import { isCurrentProductionDeployment } from '@helpers/vercel-helpers';
import * as Sentry from '@sentry/nextjs';

const SENTRY_DSN = process.env.NEXT_PUBLIC_SENTRY_DSN;
Expand Down
2 changes: 1 addition & 1 deletion frontend/sentry.server.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SENTRY_SAMPLING_ENABLED, VERCEL_ENV } from '@config/env';
import { isCurrentProductionDeployment } from '@helpers/vercel-helpers';
// import { isCurrentProductionDeployment } from '@helpers/vercel-helpers';
import { SentryErrorIntegration } from '@ifixit/sentry';
import * as Sentry from '@sentry/nextjs';

Expand Down

0 comments on commit 02ac56c

Please sign in to comment.