From dd337a77b1685459e3a5024182514e37cbcb7dde Mon Sep 17 00:00:00 2001 From: ComputelessComputer Date: Sun, 15 Mar 2026 03:02:33 +0900 Subject: [PATCH 1/2] fix: swap onboarding secondary action after sign-in starts - show "Skip for now" beside the onboarding sign-in button by default - replace the skip action with "Something not working?" after sign-in is clicked - keep the manual callback fallback flow behind the revealed recovery action --- .../src/onboarding/account/before-login.tsx | 25 +++++++++++-------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/apps/desktop/src/onboarding/account/before-login.tsx b/apps/desktop/src/onboarding/account/before-login.tsx index 23fce79df8..f752c302a8 100644 --- a/apps/desktop/src/onboarding/account/before-login.tsx +++ b/apps/desktop/src/onboarding/account/before-login.tsx @@ -23,7 +23,7 @@ export function BeforeLogin({ onContinue }: { onContinue: () => void }) { > Sign in - {didClickSignIn && ( + {didClickSignIn ? ( + ) : ( + )} - {showCallbackUrlInput && } From ee6a4c3f4a8f5ab8566b49f1409b2d8afbe761a1 Mon Sep 17 00:00:00 2001 From: ComputelessComputer Date: Sun, 15 Mar 2026 15:20:28 +0900 Subject: [PATCH 2/2] fix: clarify desktop auth callback input - Use the example callback URL as the onboarding input placeholder - Move the sign-in instruction below the input so the field stays easier to scan --- .../src/onboarding/account/before-login.tsx | 37 +++++++++++-------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/apps/desktop/src/onboarding/account/before-login.tsx b/apps/desktop/src/onboarding/account/before-login.tsx index f752c302a8..166dc0401b 100644 --- a/apps/desktop/src/onboarding/account/before-login.tsx +++ b/apps/desktop/src/onboarding/account/before-login.tsx @@ -58,22 +58,27 @@ function CallbackUrlInput() { const [callbackUrl, setCallbackUrl] = useState(""); return ( -
- setCallbackUrl(e.target.value)} - /> - +
+
+ setCallbackUrl(e.target.value)} + /> + +
+

+ Paste the browser URL here after you sign in. +

); }