From 8740c3b0090a22cad3f80108ec3f91f12acde57c Mon Sep 17 00:00:00 2001 From: Michal Miszczyszyn Date: Thu, 22 Feb 2024 14:55:22 +0100 Subject: [PATCH] Fix Sentry error --- sentry.client.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry.client.config.js b/sentry.client.config.js index 84bc615..b297e4f 100644 --- a/sentry.client.config.js +++ b/sentry.client.config.js @@ -5,7 +5,7 @@ import * as Sentry from "@sentry/nextjs"; import { env } from "./src/lib/env.mjs"; -const SENTRY_DSN = env.SENTRY_DSN || env.NEXT_PUBLIC_SENTRY_DSN; +const SENTRY_DSN = env.NEXT_PUBLIC_SENTRY_DSN; Sentry.init({ dsn: SENTRY_DSN,