chore: fix formatting issues to resolve CI failures

This commit is contained in:
Keith Guerin
2026-03-12 23:10:56 -07:00
parent 5909c2f663
commit 71094f4b2b
2 changed files with 13 additions and 6 deletions

View File

@@ -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: {

View File

@@ -81,7 +81,9 @@ describe('<HookStatusDisplay />', () => {
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(<HookStatusDisplay {...props} />);
await renderResult.waitUntilReady();