diff --git a/app/components/player/player.tsx b/app/components/player/player.tsx index a9b07470..6cc15d83 100644 --- a/app/components/player/player.tsx +++ b/app/components/player/player.tsx @@ -67,7 +67,7 @@ export function PlayerScores({ userId }: { userId: string }) { .sort((a, b) => b.score - a.score); const maxScore = sortedOtherPlayers[0] - ? sortedOtherPlayers[0].score + ? Math.max(sortedOtherPlayers[0].score, yourPlayer.score) : yourPlayer.score; return (