Skip to content

Commit

Permalink
Fix blank screen error (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
typeofweb authored Dec 20, 2023
1 parent 6817fbe commit d699cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry.client.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit d699cb4

Please sign in to comment.