From 02ac56c179fda6d01336e5c0e23433868e18d428 Mon Sep 17 00:00:00 2001 From: Daniel Beardsley Date: Thu, 8 Feb 2024 13:45:44 -0800 Subject: [PATCH] Sentry: drop unused import --- frontend/sentry.client.config.ts | 2 +- frontend/sentry.edge.config.ts | 2 +- frontend/sentry.server.config.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/sentry.client.config.ts b/frontend/sentry.client.config.ts index ddcba2e4..e158d704 100644 --- a/frontend/sentry.client.config.ts +++ b/frontend/sentry.client.config.ts @@ -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'; diff --git a/frontend/sentry.edge.config.ts b/frontend/sentry.edge.config.ts index 86d50449..a566018a 100644 --- a/frontend/sentry.edge.config.ts +++ b/frontend/sentry.edge.config.ts @@ -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; diff --git a/frontend/sentry.server.config.ts b/frontend/sentry.server.config.ts index e01a9d0e..fb9f8db6 100644 --- a/frontend/sentry.server.config.ts +++ b/frontend/sentry.server.config.ts @@ -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';