From 71094f4b2bbe3d7f3296e2f8084627901bb07d42 Mon Sep 17 00:00:00 2001 From: Keith Guerin Date: Thu, 12 Mar 2026 23:10:56 -0700 Subject: [PATCH] chore: fix formatting issues to resolve CI failures --- packages/cli/src/config/settingsSchema.ts | 15 ++++++++++----- .../src/ui/components/HookStatusDisplay.test.tsx | 4 +++- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/packages/cli/src/config/settingsSchema.ts b/packages/cli/src/config/settingsSchema.ts index 4ce64d7022..b330b14162 100644 --- a/packages/cli/src/config/settingsSchema.ts +++ b/packages/cli/src/config/settingsSchema.ts @@ -537,7 +537,8 @@ const SETTINGS_SCHEMA = { category: 'UI', requiresRestart: false, default: false, - description: 'Hide the introductory tips shown at the top of the screen.', + description: + 'Hide the introductory tips shown at the top of the screen.', showInDialog: true, }, hideIntroTips: { @@ -546,7 +547,8 @@ const SETTINGS_SCHEMA = { category: 'UI', requiresRestart: false, default: false, - description: '@deprecated Use ui.hideTips instead. Hide the intro tips in the header.', + description: + '@deprecated Use ui.hideTips instead. Hide the intro tips in the header.', showInDialog: false, }, escapePastedAtSymbols: { @@ -565,7 +567,8 @@ const SETTINGS_SCHEMA = { category: 'UI', requiresRestart: false, default: true, - description: "Show basic shortcut help ('?') when the status line is idle.", + description: + "Show basic shortcut help ('?') when the status line is idle.", showInDialog: true, }, hideBanner: { @@ -754,7 +757,8 @@ const SETTINGS_SCHEMA = { category: 'UI', requiresRestart: false, default: false, - description: 'Hide helpful tips in the footer while the model is working.', + description: + 'Hide helpful tips in the footer while the model is working.', showInDialog: true, }, hideStatusWit: { @@ -763,7 +767,8 @@ const SETTINGS_SCHEMA = { category: 'UI', requiresRestart: false, default: true, - description: 'Hide witty loading phrases in the footer while the model is working.', + description: + 'Hide witty loading phrases in the footer while the model is working.', showInDialog: true, }, statusHints: { diff --git a/packages/cli/src/ui/components/HookStatusDisplay.test.tsx b/packages/cli/src/ui/components/HookStatusDisplay.test.tsx index 4fd7dda210..4cb964b750 100644 --- a/packages/cli/src/ui/components/HookStatusDisplay.test.tsx +++ b/packages/cli/src/ui/components/HookStatusDisplay.test.tsx @@ -81,7 +81,9 @@ describe('', () => { it('matches SVG snapshot for single hook', async () => { const props = { - activeHooks: [{ name: 'test-hook', eventName: 'BeforeAgent', source: 'user' }], + activeHooks: [ + { name: 'test-hook', eventName: 'BeforeAgent', source: 'user' }, + ], }; const renderResult = render(); await renderResult.waitUntilReady();