Skip to content
This repository was archived by the owner on Apr 4, 2022. It is now read-only.

Commit

Permalink
fix missing sentry dsn issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nenadV91 committed Sep 22, 2021
1 parent 2251c0c commit cc188d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/explorer/ExplorerApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const SENTRY_TRACES_SAMPLE_RATE = process.env.REACT_APP_SENTRY_TRACES_SAMPLE_RAT

if (SENTRY_DSN) {
Sentry.init({
dsn: process.env.REACT_APP_SENTRY_DSN,
dsn: SENTRY_DSN,
integrations: [new Integrations.BrowserTracing()],
release: 'gp-explorer@v' + version,
environment: environmentName,
Expand Down
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const EXPLORER_APP = {
OPERATOR_URL_PROD_XDAI: 'https://protocol-xdai.gnosis.io/api',

GOOGLE_ANALYTICS_ID: undefined,
REACT_APP_SENTRY_DSN: undefined,
},
}
const SAFE_SWAP_APP = {
Expand Down

0 comments on commit cc188d5

Please sign in to comment.