fix(coding-agent): remove extra spacer before streaming tool blocks

This commit is contained in:
Aljosa Asanovic 2026-03-02 10:22:51 -05:00
parent 480d6bc62d
commit b97310474b
No known key found for this signature in database
GPG key ID: 8AE0F719C49B8338

View file

@ -2109,7 +2109,6 @@ export class InteractiveMode {
for (const content of this.streamingMessage.content) {
if (content.type === "toolCall") {
if (!this.pendingTools.has(content.id)) {
this.chatContainer.addChild(new Text("", 0, 0));
const component = new ToolExecutionComponent(
content.name,
content.arguments,