Browse Source

debug: add top-level log to auth.ts

unknown 3 days ago
parent
commit
ed460d669b
1 changed files with 2 additions and 0 deletions
  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);