diff --git a/frontend/src/stores/useAuthStore.ts b/frontend/src/stores/useAuthStore.ts index c071af7..ab48502 100644 --- a/frontend/src/stores/useAuthStore.ts +++ b/frontend/src/stores/useAuthStore.ts @@ -38,7 +38,6 @@ export const useAuthStore = defineStore({ logout() { this.token = null; localStorage.removeItem('token'); - localStorage.removeItem('id'); localStorage.removeItem('name'); localStorage.removeItem('domain'); Router.push('/login');