From b2621a10debbc50b757711e8efe4ea667f1c2c4f Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sat, 21 Mar 2026 16:41:54 +0530 Subject: [PATCH] fix: console logs branch names directly for close confirmation --- src/core/close.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/close.ts b/src/core/close.ts index a08ddea..1a41986 100644 --- a/src/core/close.ts +++ b/src/core/close.ts @@ -69,10 +69,10 @@ export async function closeMultiModel(options: CloseSessionOptions): Promise 0) { - instructionsArr.push(chalk.red('The following worktrees and branches will be removed:')); + console.log(chalk.red('The following worktrees and branches will be removed:')); worktrees.forEach((wt) => { const msg = ` - ${wt.path} (branch: ${wt.branch})`; - instructionsArr.push(msg.trim()); + console.log(msg.trim()); }); const answer = await promptUser(chalk.bold("\nDo you want to proceed? (y/N): "));