fix(coding-agent): space interactive errors

closes #4510
This commit is contained in:
Mario Zechner
2026-05-15 01:10:56 +02:00
parent 3ca474b15b
commit 7ddc7dd1ec
2 changed files with 2 additions and 0 deletions

View File

@@ -3542,6 +3542,7 @@ export class InteractiveMode {
showError(errorMessage: string): void {
this.chatContainer.addChild(new Spacer(1));
this.chatContainer.addChild(new Text(theme.fg("error", `Error: ${errorMessage}`), 1, 0));
this.chatContainer.addChild(new Spacer(1));
this.ui.requestRender();
}