fix(coding-agent): avoid duplicate blocked edit output

closes #3830
This commit is contained in:
Mario Zechner
2026-04-30 22:50:40 +02:00
parent 95ae590279
commit 3ffc2b4306

View File

@@ -467,7 +467,7 @@ export function createEditToolDefinition(
changed = true; changed = true;
} }
if (changed) { if (changed) {
context.invalidate(); buildEditCallComponent(callComponent, context.args as RenderableEditArgs | undefined, theme);
} }
} }