remove comment

This commit is contained in:
Edd
2025-12-23 20:05:17 +00:00
parent 0320230279
commit e47a453588
+2 -3
View File
@@ -4,9 +4,8 @@ import { useAPIStore } from './api'
export const useAuthStore = defineStore('auth', () => { export const useAuthStore = defineStore('auth', () => {
// Token timeout constants (in milliseconds) const DEFAULT_TIMEOUT = 5 * 60 * 1000
const DEFAULT_TIMEOUT = 5 * 60 * 1000 // 5 minutes const REMEMBER_ME_TIMEOUT = 365 * 24 * 60 * 60 * 1000
const REMEMBER_ME_TIMEOUT = 365 * 24 * 60 * 60 * 1000 // 1 year
const currentUser = ref(undefined) const currentUser = ref(undefined)
const token = ref(localStorage.getItem('token') || null) const token = ref(localStorage.getItem('token') || null)