[파일 경로 수정] cultureGraph 관련 컴포넌트의 import 경로를 culture-graph로 변경하고, user.ts에서 주석 처리된 사용자 로그아웃 및 탭 초기화 로직을 활성화함.

This commit is contained in:
2025-09-26 09:07:51 +09:00
parent 5687db9f25
commit 8b7b516855
3 changed files with 7 additions and 7 deletions

View File

@@ -54,13 +54,13 @@ export const useUserStore = defineStore(
showAlert: false,
});
// user.value = null;
// isLoggedIn.value = false;
user.value = null;
isLoggedIn.value = false;
// tabsStore.resetTabs();
// permissionsStore.clearPermissions();
tabsStore.resetTabs();
permissionsStore.clearPermissions();
// await navigateTo("/login");
await navigateTo("/login");
};
return {