diff --git a/app/components/chat/Artifact.tsx b/app/components/chat/Artifact.tsx index 4c3b18b3..5f0c9910 100644 --- a/app/components/chat/Artifact.tsx +++ b/app/components/chat/Artifact.tsx @@ -51,7 +51,8 @@ export const Artifact = memo(({ messageId }: ArtifactProps) => { if (actions.length !== 0 && artifact.type === 'bundled') { const finished = !actions.find((action) => action.status !== 'complete'); - if(allActionFinished!==finished){ + + if (allActionFinished !== finished) { setAllActionFinished(finished); } }