fix(auth): bump appshell-sdk 0.2.1 (PKCE verifier fix); tidy OAuth error handling

This commit is contained in:
tanweer919
2026-07-13 02:02:24 +05:30
parent 7570fe7be3
commit 0e8a207640
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -86,8 +86,8 @@ export function LoginFlow() {
}
})
.catch((e) => {
console.error("[oauth] completeOAuthLogin failed:", e);
setFlash(`Google sign-in didn't complete: ${(e as Error)?.message ?? "unknown error"}`);
console.error("[oauth] Google sign-in failed:", e);
setFlash(`Google sign-in didn't complete: ${(e as Error)?.message ?? "please try again"}`);
replace("identify");
});
}, [ready, completeOAuthLogin, router]);