auth
This commit is contained in:
parent
b30f396ec4
commit
8eb2375629
@ -37,7 +37,7 @@ export const useAuthStore = defineStore('auth', () => {
|
|||||||
return true;
|
return true;
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
console.error('Login failed', error)
|
console.error('Login failed', error)
|
||||||
throw error
|
throw new Error(error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -102,7 +102,7 @@ export const useAuthStore = defineStore('auth', () => {
|
|||||||
return true;
|
return true;
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
console.error('Refresh token failed', error)
|
console.error('Refresh token failed', error)
|
||||||
throw error
|
throw new Error(error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user