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): "));