From efb4e212052a9a85017913f3c08c57d91b5c81d7 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sun, 5 Apr 2026 17:41:21 -0500 Subject: [PATCH] fix(ui): remove 200-column cap on welcome screen width The welcome screen lines stopped short on wide terminals because termWidth was capped at 200 columns. Remove the cap so separator lines extend to the full terminal width. --- src/welcome-screen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/welcome-screen.ts b/src/welcome-screen.ts index ee56953f2..80f7b03aa 100644 --- a/src/welcome-screen.ts +++ b/src/welcome-screen.ts @@ -54,7 +54,7 @@ export function printWelcomeScreen(opts: WelcomeScreenOptions): void { const { version, modelName, provider, remoteChannel } = opts const shortCwd = getShortCwd() const branch = getGitBranch() - const termWidth = Math.min((process.stderr.columns || 80) - 1, 200) + const termWidth = (process.stderr.columns || 80) - 1 // Narrow terminal fallback if (termWidth < 70) {