diff --git a/src/views/OAuthCallbackView.vue b/src/views/OAuthCallbackView.vue index be460c9..11f1bdd 100644 --- a/src/views/OAuthCallbackView.vue +++ b/src/views/OAuthCallbackView.vue @@ -2,7 +2,7 @@
-

{{ error }}

+

{{ error || auth.error }}

Signing you in…

@@ -26,7 +26,7 @@ onMounted(async () => { await shops.fetchAll() router.replace('/') } else { - error.value = 'Authentication failed. Please try again.' + error.value = auth.error ?? 'Authentication failed — check console for details.' } } catch (e) { error.value = e instanceof Error ? e.message : 'Authentication error'