Prechádzať zdrojové kódy

debug: add top-level log to auth.ts

unknown 3 dní pred
rodič
commit
ed460d669b
1 zmenil súbory, kde vykonal 2 pridanie a 0 odobranie
  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);