From c31cea8c30e269897f71cb4bc48100510a8b1af6 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Sat, 21 Mar 2026 01:48:10 -0600 Subject: [PATCH] refactor(cli): remove dead _clearScreen param from displayLogo --- tools/cli/lib/cli-utils.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/cli/lib/cli-utils.js b/tools/cli/lib/cli-utils.js index 569f1c44c..cf4cfa7b4 100644 --- a/tools/cli/lib/cli-utils.js +++ b/tools/cli/lib/cli-utils.js @@ -16,10 +16,9 @@ const CLIUtils = { }, /** - * Display BMAD logo using @clack intro + box - * @param {boolean} _clearScreen - Deprecated, ignored (no longer clears screen) + * Display BMAD logo and version using @clack intro + box */ - async displayLogo(_clearScreen = true) { + async displayLogo() { const version = this.getVersion(); const color = await prompts.getColor();