Преглед на файлове

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);