Skip to content

Commit

Permalink
bug: fix sentry init (#1839)
Browse files Browse the repository at this point in the history
  • Loading branch information
ansmonjol authored Oct 30, 2024
1 parent c8f69ca commit d4c125f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const { appEnv, sentryDsn } = envGlobalVar()
if (!!sentryDsn && appEnv !== AppEnvEnum.development) {
Sentry.init({
dsn: sentryDsn,
integrations: [browserTracingIntegration()],
integrations: [Sentry.browserTracingIntegration()],
environment: appEnv,
})
}
Expand Down

0 comments on commit d4c125f

Please sign in to comment.