From d27f6b555fdbbc4ed4f6bf64d86bf5be2d06dbf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davor=20Raci=C4=87?= Date: Tue, 3 Feb 2026 17:40:22 +0100 Subject: [PATCH] fix: formatting --- tools/cli/lib/prompts.js | 7 +------ tools/cli/lib/ui.js | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/tools/cli/lib/prompts.js b/tools/cli/lib/prompts.js index ca67a079..7ab2d21e 100644 --- a/tools/cli/lib/prompts.js +++ b/tools/cli/lib/prompts.js @@ -303,12 +303,7 @@ async function autocompleteMultiselect(options) { const errorLine = this.state === 'error' ? [`${bar} ${color.yellow(this.error)}`] : []; - const headerLines = [ - ...`${title}${bar}`.split('\n'), - `${bar} ${searchDisplay}${matchCount}`, - ...noMatchesLine, - ...errorLine, - ]; + const headerLines = [...`${title}${bar}`.split('\n'), `${bar} ${searchDisplay}${matchCount}`, ...noMatchesLine, ...errorLine]; const footerLines = [`${bar} ${color.dim(hints.join(' • '))}`, `${barEnd}`]; diff --git a/tools/cli/lib/ui.js b/tools/cli/lib/ui.js index d1647aec..0e495926 100644 --- a/tools/cli/lib/ui.js +++ b/tools/cli/lib/ui.js @@ -999,7 +999,7 @@ class UI { console.log( chalk.gray(`Directory exists and contains ${files.length} item(s)`) + - (hasBmadInstall ? chalk.yellow(` including existing BMAD installation (${path.basename(bmadResult.bmadDir)})`) : ''), + (hasBmadInstall ? chalk.yellow(` including existing BMAD installation (${path.basename(bmadResult.bmadDir)})`) : ''), ); } else { console.log(chalk.gray('Directory exists and is empty'));