Skip to content

Commit eda7304

Browse files
fix(ui): Adjust tool opacity, failed tool wording
1 parent c09e0a0 commit eda7304

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/agent-group/tool-call-item.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export function ToolCallItem({ toolName, displayTitle, status, streamingArgs }:
9494
}, [toolName, streamingArgs])
9595

9696
return (
97-
<div className='flex items-center gap-[8px] pl-[24px]'>
97+
<div className='flex items-center gap-[8px] pl-[24px] opacity-60'>
9898
<div className='flex h-[16px] w-[16px] flex-shrink-0 items-center justify-center'>
9999
<StatusIcon status={status} toolName={toolName} />
100100
</div>

apps/sim/lib/copilot/tools/client/store-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function formatReadingLabel(target: string | undefined, state: ClientToolCallSta
7171
case ClientToolCallState.success:
7272
return `Read${suffix}`
7373
case ClientToolCallState.error:
74-
return `Failed reading${suffix}`
74+
return `Attempted to read${suffix}`
7575
case ClientToolCallState.rejected:
7676
case ClientToolCallState.aborted:
7777
return `Skipped reading${suffix}`
@@ -132,7 +132,7 @@ function humanizedFallback(
132132
state === ClientToolCallState.success
133133
? 'Executed'
134134
: state === ClientToolCallState.error
135-
? 'Failed'
135+
? 'Attempted to'
136136
: state === ClientToolCallState.rejected || state === ClientToolCallState.aborted
137137
? 'Skipped'
138138
: 'Executing'

0 commit comments

Comments
 (0)