Skip to content

Commit d311f9d

Browse files
author
outisa
committed
Fix stupidity
1 parent f652ccd commit d311f9d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/client/util/sentry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import * as Sentry from '@sentry/browser'
22
import { Integrations } from '@sentry/tracing'
3-
import { inProduction, inStaging, inE2EMode, SENTRY_DNS_FRONT, SENTRY_GIT_SHA } from '@config'
3+
import { inProduction, inStaging, inE2EMode, SENTRY_DNS, SENTRY_GIT_SHA } from '@config'
44

55
const initializeSentry = () => {
66
if (!inProduction || inStaging || inE2EMode) {
77
return
88
}
99

1010
Sentry.init({
11-
dsn: SENTRY_DNS_FRONT,
11+
dsn: SENTRY_DNS,
1212
release: SENTRY_GIT_SHA,
1313
integrations: [new Integrations.BrowserTracing()],
1414
tracesSampleRate: 1.0,

src/config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,4 @@ export const {
5858

5959
//
6060
export const SENTRY_DNS = 'https://64dd6a17eea106fe721e79664269a1b1@toska.it.helsinki.fi/12'
61-
export const SENTRY_DNS_FRONT = 'https://17529705a380a84da9a7b3719677b2fe@toska.it.helsinki.fi/13'
6261
export const SENTRY_GIT_SHA = process.env.REACT_APP_GIT_SHA

0 commit comments

Comments
 (0)