Skip to content

Commit

Permalink
hotfix: temporarily disable sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Oct 16, 2024
1 parent f6053fb commit dc0474a
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions packages/backend/src/features/sentry.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
const Sentry = require("@sentry/node");
// const Sentry = require("@sentry/node");
import { ENV, isDev } from "../envVars";

export const sentry = isDev
? null
: Sentry.init({
dsn: ENV.SENTRY_DSN,
tracesSampleRate: 1.0,
});
export const sentry = isDev ? null : null;
// Sentry.init({
// dsn: ENV.SENTRY_DSN,
// tracesSampleRate: 1.0,
// });

0 comments on commit dc0474a

Please sign in to comment.