We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b529e0 commit 2024317Copy full SHA for 2024317
gui/src/pages/gui/ToolCallDiv/index.tsx
@@ -29,7 +29,7 @@ export function ToolCallDiv({
29
30
const shouldShowGroupedUI = toolCallStates.length > 1 && isStreamingComplete;
31
const activeCalls = toolCallStates.filter(
32
- (call) => call.status !== "canceled",
+ (call) => call.status !== "canceled" && call.status !== "done",
33
);
34
35
const renderToolCall = (toolCallState: ToolCallState) => {
0 commit comments