From 4f117a2e6c4a77504206df4576c7d3f9d8dd1a2a Mon Sep 17 00:00:00 2001 From: Florian <45694132+flo-bit@users.noreply.github.com> Date: Fri, 13 Feb 2026 23:17:22 +0100 Subject: [PATCH] improve oauth callback page (show error later ^^) --- src/routes/(auth)/oauth/callback/+page.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/(auth)/oauth/callback/+page.svelte b/src/routes/(auth)/oauth/callback/+page.svelte index 097a332..13ef050 100644 --- a/src/routes/(auth)/oauth/callback/+page.svelte +++ b/src/routes/(auth)/oauth/callback/+page.svelte @@ -17,14 +17,14 @@ setTimeout(() => { showError = true; - }, 3000); + }, 5000); } }); -{#if user.isInitializing || !showError} +{#if !showError}
Loading...
-{:else if showError} +{:else}
There was an error signing you in, please go back to the -- 2.51.2