Skip to content

Commit

Permalink
fix: isRunning in step
Browse files Browse the repository at this point in the history
  • Loading branch information
willydouhard committed Jan 8, 2025
1 parent be5aeb2 commit 032b668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/chat/Messages/Message/Step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export default function Step({
'flex items-center gap-1 group/step',
isError && 'text-red-500',
hasContent && 'cursor-pointer',
!isRunning && 'text-muted-foreground hover:text-foreground',
isRunning && 'loading-shimmer'
!using && 'text-muted-foreground hover:text-foreground',
using && 'loading-shimmer'
)}
onClick={() => setOpen(!open)}
id={`step-${stepName}`}
Expand Down

0 comments on commit 032b668

Please sign in to comment.