Skip to content

Commit 80455d0

Browse files
committed
feat: update ResourceProgressBadge to display completed count incremented by one
1 parent b36235a commit 80455d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/common/ResourceLoadingIndicator.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const ResourceProgressBadge = ({ isCalculating, completedCount, totalCoun
5151
<div className="flex items-center space-x-1">
5252
<Loader2 className="w-3 h-3 animate-spin" />
5353
<span>
54-
{totalCount > 0 ? `${completedCount}/${totalCount}` : 'Loading...'}
54+
{totalCount > 0 ? `${completedCount+1}/${totalCount}` : 'Loading...'}
5555
</span>
5656
</div>
5757
</div>

0 commit comments

Comments
 (0)