From 7e5511b33d020636db028625efbb1e7987e7698b Mon Sep 17 00:00:00 2001 From: luvs01 Date: Mon, 14 Sep 2026 13:47:26 +0900 Subject: [PATCH 01/11] fix(gui): keep failed reauth cancellation retryable --- .../codex-account-pool-main-card.tsx | 3 ++ gui/src/components/use-main-device-reauth.ts | 25 +++++++--- gui/tests/main-device-reauth.test.tsx | 48 +++++++++++++++++++ 3 files changed, 69 insertions(+), 7 deletions(-) diff --git a/gui/src/components/codex-account-pool-main-card.tsx b/gui/src/components/codex-account-pool-main-card.tsx index e1439c1439..0f7e7f2d8f 100644 --- a/gui/src/components/codex-account-pool-main-card.tsx +++ b/gui/src/components/codex-account-pool-main-card.tsx @@ -218,6 +218,9 @@ export function CodexAccountPoolMainCard({ {t("codexAuth.mainReauthCode")}: {mainReauth.state.deviceCode} )} {t("codexAuth.mainReauthPending")} + {mainReauth.state.cancelFailed && ( + {t("codexAuth.mainReauthFailed")} + )}