You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/agent-group/tool-call-item.tsx
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -206,11 +206,13 @@ export function ToolCallItem({
206
206
return(
207
207
<divclassName='pl-6'>
208
208
<CredentialDisplay
209
-
data={{
210
-
type: 'terminal_handoff',
211
-
value: terminalHandoff.terminalId,
212
-
name: terminalHandoff.reason,
213
-
}}
209
+
data={[
210
+
{
211
+
type: 'terminal_handoff',
212
+
value: terminalHandoff.terminalId,
213
+
name: terminalHandoff.reason,
214
+
},
215
+
]}
214
216
/>
215
217
</div>
216
218
)
@@ -220,7 +222,7 @@ export function ToolCallItem({
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/chat-content/chat-content.tsx
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ import { extractTextContent } from '@/lib/core/utils/react-node-text'
0 commit comments