From 31d47962cadea3527362fe0074d7b03e5907ee16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 5 Feb 2021 20:23:40 +0000 Subject: [PATCH] chore(ui): disable sentry session tracking (#2732) --- ui/src/AppBoot.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/AppBoot.ts b/ui/src/AppBoot.ts index 059147ff5..e662afa2c 100644 --- a/ui/src/AppBoot.ts +++ b/ui/src/AppBoot.ts @@ -25,6 +25,7 @@ const SetupSentry = (settingsElement: HTMLElement | null): void => { init({ dsn: settingsElement.dataset.sentryDsn, release: version, + autoSessionTracking: false, }); } catch (err) { console.error("Sentry config failed: " + err);