diff options
| author | Allen Hutchison <[email protected]> | 2025-06-18 11:40:15 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-18 11:40:15 -0700 |
| commit | fbc79c34c9eb05dcefa4618a6863360ec2b46277 (patch) | |
| tree | 724cec98a05f58eff4cc7b79ba1cfb8f02c6d55d /packages/cli/src/gemini.tsx | |
| parent | 589a7b59c61f0477196ff3c4eec59418367387b4 (diff) | |
Fix noise in headless mode on STDOUT (#1184)
Diffstat (limited to 'packages/cli/src/gemini.tsx')
| -rw-r--r-- | packages/cli/src/gemini.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/gemini.tsx b/packages/cli/src/gemini.tsx index 148f18bf..d87a8a6a 100644 --- a/packages/cli/src/gemini.tsx +++ b/packages/cli/src/gemini.tsx @@ -30,7 +30,6 @@ import { export async function main() { const workspaceRoot = process.cwd(); const settings = loadSettings(workspaceRoot); - setWindowTitle(basename(workspaceRoot), settings); await cleanupCheckpoints(); if (settings.errors.length > 0) { @@ -84,6 +83,7 @@ export async function main() { // Render UI, passing necessary config values. Check that there is no command line question. if (process.stdin.isTTY && input?.length === 0) { + setWindowTitle(basename(workspaceRoot), settings); render( <React.StrictMode> <AppWrapper |
