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'));