Explorar o código

debug: add top-level log to auth.ts

unknown hai 3 días
pai
achega
ed460d669b
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  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);