Skip to content

Commit 2024317

Browse files
committed
fix action verb for tool call div
1 parent 6b529e0 commit 2024317

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/src/pages/gui/ToolCallDiv/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function ToolCallDiv({
2929

3030
const shouldShowGroupedUI = toolCallStates.length > 1 && isStreamingComplete;
3131
const activeCalls = toolCallStates.filter(
32-
(call) => call.status !== "canceled",
32+
(call) => call.status !== "canceled" && call.status !== "done",
3333
);
3434

3535
const renderToolCall = (toolCallState: ToolCallState) => {

0 commit comments

Comments
 (0)