Skip to content

Commit cb185cf

Browse files
committed
fix(upload-progress): simplify BadgeStatus prop usage for clarity
1 parent 81de5af commit cb185cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/upload/upload-progress.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default function UploadProgress({ fileName, fileSize, progress }: UploadP
118118
</div>
119119
<div className="flex items-center gap-6">
120120
{getCombinedFirstStageStatus() === 'completed' ? (
121-
<BadgeStatus status={'pinned'} />
121+
<BadgeStatus status="pinned" />
122122
) : (
123123
<BadgeStatus status={getCombinedFirstStageStatus()} />
124124
)}

0 commit comments

Comments
 (0)