Skip to content

Commit a66c496

Browse files
committed
Rever sentry user auth causing issues
1 parent 4c7711d commit a66c496

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

client/stores/auth.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import {defineStore} from 'pinia'
2-
import * as Sentry from "@sentry/vue";
32

43
export const useAuthStore = defineStore('auth', {
54
state: () => {
@@ -65,12 +64,7 @@ export const useAuthStore = defineStore('auth', {
6564
useAmplitude().setUser(this.user)
6665
useCrisp().setUser(this.user)
6766

68-
// Init sentry
69-
Sentry.setUser({
70-
id: this.user.id,
71-
email: this.user.email,
72-
subscription: this.user?.is_subscribed
73-
})
67+
// todo: set sentry user
7468
},
7569

7670
logout() {

0 commit comments

Comments
 (0)