Skip to content

Commit

Permalink
fix: account for a bad CMS request (#5221)
Browse files Browse the repository at this point in the history
  • Loading branch information
anxolin authored Dec 17, 2024
1 parent 8f46379 commit 8d2edd7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,8 @@ function FinishedStep(props: OrderProgressBarV2Props) {
{solvers.length > 1 && (
<p>
<b>
{solvers.length} out of {totalSolvers} solvers
{solvers.length}
{totalSolvers ? ` out of ${totalSolvers}` : ''} solvers
</b>{' '}
submitted a solution
</p>
Expand Down

0 comments on commit 8d2edd7

Please sign in to comment.