diff --git a/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx b/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx index 42c46dc2..f556d5cc 100644 --- a/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx +++ b/apps/rowboat/app/projects/[projectId]/playground/components/chat.tsx @@ -75,7 +75,7 @@ export function Chat({ // collect published tool call results const toolCallResults: Record> = {}; - messages + optimisticMessages .filter((message) => message.role == 'tool') .forEach((message) => { toolCallResults[message.tool_call_id] = message;