diff --git a/stores/auth.ts b/stores/auth.ts index 7cf5038..f1d0a26 100644 --- a/stores/auth.ts +++ b/stores/auth.ts @@ -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) } }