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) {