From 5c05407f922521637bc067731aa7eb3cac9ee89f Mon Sep 17 00:00:00 2001 From: wvffle Date: Sun, 31 Jul 2022 20:36:43 +0000 Subject: [PATCH] Fix cookie name --- front/src/init/sentry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/init/sentry.ts b/front/src/init/sentry.ts index 3d10a458d..a53f29b6d 100644 --- a/front/src/init/sentry.ts +++ b/front/src/init/sentry.ts @@ -2,7 +2,7 @@ import type { InitModule } from '~/types' import type { Router } from 'vue-router' import type { App } from 'vue' -const COOKIE = 'allow-tracing2' +const COOKIE = 'allow-tracing' const initSentry = async (app: App, router: Router) => { const [{ BrowserTracing }, Sentry] = await Promise.all([