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