From d4c125f12c4110eb1c150467f9feaf902227c7fe Mon Sep 17 00:00:00 2001 From: Alexandre Monjol Date: Wed, 30 Oct 2024 11:41:11 +0100 Subject: [PATCH] bug: fix sentry init (#1839) --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index cb2930d9f..56832616c 100644 --- a/src/index.js +++ b/src/index.js @@ -13,7 +13,7 @@ const { appEnv, sentryDsn } = envGlobalVar() if (!!sentryDsn && appEnv !== AppEnvEnum.development) { Sentry.init({ dsn: sentryDsn, - integrations: [browserTracingIntegration()], + integrations: [Sentry.browserTracingIntegration()], environment: appEnv, }) }