From 8f6d8d8e20b2a7edf0a2468e900c415c47ee46ab Mon Sep 17 00:00:00 2001 From: Anirban Kar Date: Fri, 6 Dec 2024 23:23:32 +0530 Subject: [PATCH] linting --- app/components/chat/Artifact.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/components/chat/Artifact.tsx b/app/components/chat/Artifact.tsx index 4c3b18b..5f0c991 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); } }