Merge pull request #569 from thecodacus/fix-artifact-bug

fix: artifact bugfix
This commit is contained in:
Anirban Kar 2024-12-06 23:05:31 +05:30 committed by GitHub
commit f4d2f73d8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,7 +49,7 @@ export const Artifact = memo(({ messageId }: ArtifactProps) => {
setShowActions(true); setShowActions(true);
} }
if (actions.length !== 0) { if (actions.length !== 0 && artifact.type === 'bundled') {
const finished = !actions.find((action) => action.status !== 'complete'); const finished = !actions.find((action) => action.status !== 'complete');
setAllActionFinished(finished); setAllActionFinished(finished);
} }