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 a262c7a commit e372fa0Copy full SHA for e372fa0
apps/webapp/app/components/runs/v3/ai/AIChatMessages.tsx
@@ -212,13 +212,11 @@ function ToolUseSection({ tools }: { tools: ToolUse[] }) {
212
return (
213
<div className="flex flex-col gap-1.5 py-2.5">
214
<SectionHeader label={tools.length === 1 ? "Tool call" : `Tool calls (${tools.length})`} />
215
- <ChatBubble>
216
- <div className="flex flex-col gap-2">
217
- {tools.map((tool) => (
218
- <ToolUseRow key={tool.toolCallId} tool={tool} />
219
- ))}
220
- </div>
221
- </ChatBubble>
+ <div className="flex flex-col gap-2">
+ {tools.map((tool) => (
+ <ToolUseRow key={tool.toolCallId} tool={tool} />
+ ))}
+ </div>
222
</div>
223
);
224
}
0 commit comments