From a66c4965a53c0dfc4abf7e8c8e2c256436a16f26 Mon Sep 17 00:00:00 2001 From: Julien Nahum Date: Sat, 10 Feb 2024 14:10:14 +0100 Subject: [PATCH] Rever sentry user auth causing issues --- client/stores/auth.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/client/stores/auth.js b/client/stores/auth.js index f05f36be..a6d984c7 100644 --- a/client/stores/auth.js +++ b/client/stores/auth.js @@ -1,5 +1,4 @@ import {defineStore} from 'pinia' -import * as Sentry from "@sentry/vue"; export const useAuthStore = defineStore('auth', { state: () => { @@ -65,12 +64,7 @@ export const useAuthStore = defineStore('auth', { useAmplitude().setUser(this.user) useCrisp().setUser(this.user) - // Init sentry - Sentry.setUser({ - id: this.user.id, - email: this.user.email, - subscription: this.user?.is_subscribed - }) + // todo: set sentry user }, logout() {