From 404f3813e2ba7579e8d76da6e46f1789a4ced1df Mon Sep 17 00:00:00 2001 From: Gagancreates Date: Tue, 19 May 2026 22:46:43 +0530 Subject: [PATCH] feat: show sign-in command when agent installed but signed out --- apps/x/apps/renderer/src/components/settings-dialog.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/x/apps/renderer/src/components/settings-dialog.tsx b/apps/x/apps/renderer/src/components/settings-dialog.tsx index 6c7b5893..37e0a930 100644 --- a/apps/x/apps/renderer/src/components/settings-dialog.tsx +++ b/apps/x/apps/renderer/src/components/settings-dialog.tsx @@ -1662,13 +1662,16 @@ type CodeModeAgentStatus = { claude: AgentStatus; codex: AgentStatus } function AgentStatusRow({ name, installLink, + signInCommand, status, }: { name: string installLink: string + signInCommand: string status: AgentStatus | null }) { const ready = status?.installed && status?.signedIn + const needsSignInOnly = status?.installed && !status?.signedIn return (
@@ -1689,6 +1692,10 @@ function AgentStatusRow({ Ready + ) : needsSignInOnly ? ( + + Run {signInCommand} + ) : (