fix: dashboard services & clear data cache

This commit is contained in:
Alexandro Uc
2025-10-25 14:09:55 -06:00
parent e7c7e87c05
commit 1e80addfd7
5 changed files with 23 additions and 14 deletions

View File

@@ -82,7 +82,8 @@ export const useAuthStore = defineStore('auth', () => {
token.value = '';
user.value = null;
checking.value = false;
authStatus.value = 'checking'
authStatus.value = 'checking';
isAuthenticated.value = false;
loadStore.clear();
}