소스 검색

debug: add top-level log to auth.ts

unknown 3 일 전
부모
커밋
ed460d669b
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/stores/auth.ts

+ 2 - 0
src/stores/auth.ts

@@ -3,6 +3,8 @@ import { ref } from "vue";
 import { getCurrentUser } from "@/lib/api";
 import { toast } from "vue-sonner";
 
+console.log("DEBUG: Auth store file loaded");
+
 export const useAuthStore = defineStore("auth", () => {
   const user = ref<any>(null);
   const isLoading = ref(true);