diff --git a/packages/web/components/QuestChain/QuestHeading.tsx b/packages/web/components/QuestChain/QuestHeading.tsx index d0a6b053b..5c5c94a22 100644 --- a/packages/web/components/QuestChain/QuestHeading.tsx +++ b/packages/web/components/QuestChain/QuestHeading.tsx @@ -104,11 +104,10 @@ export const PlayersFinished: React.FC<{ }> = ({ numQuesters, numCompletedQuesters, updatedAt }) => ( - {numQuesters && numCompletedQuesters - ? `${Math.round( - (numCompletedQuesters / numQuesters) * 100, - )}% of players have finished this` - : 'No players have finished this yet'} + {numQuesters > 0 + ? + `${numCompletedQuesters} of ${numQuesters} participants have finished this` + : 'No participants have attempted this yet'}