From a3e9bac119edfbdf673f99dbe95de6ed5d2e9ee2 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Mon, 9 Feb 2026 09:15:55 +0100 Subject: [PATCH] fix: reset processing state on retry in auth callback and update loading overlay title in welcome page --- app/auth/callback/page.tsx | 1 + app/welcome/page.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/auth/callback/page.tsx b/app/auth/callback/page.tsx index 4891587..e364b31 100644 --- a/app/auth/callback/page.tsx +++ b/app/auth/callback/page.tsx @@ -105,6 +105,7 @@ function AuthCallbackContent() { const handleRetry = () => { setError(null) + processedRef.current = false setIsRetrying(true) } diff --git a/app/welcome/page.tsx b/app/welcome/page.tsx index 666b541..6112548 100644 --- a/app/welcome/page.tsx +++ b/app/welcome/page.tsx @@ -317,7 +317,7 @@ function WelcomeContent() { } if (switchingOrgId) { - return + return } if (redirectingCheckout || (planLoading && step === 3)) {