oopsie doodle
All checks were successful
Deploy SSR / deploy (push) Successful in 1m13s

This commit is contained in:
Lee 2024-09-12 16:47:25 +01:00
parent 9ec43b9a77
commit b3c37afa0e

@ -73,7 +73,7 @@ export default function ScoreStats({ playerScore }: Props) {
.map((_, index) => <div key={`empty-${index}`} className="flex-1 min-w-[30%]"></div>)}
{rowStats.map((stat) => (
<div key={stat.name} className="flex-1 min-w-[30%]">
<StatValue value={stat.create(playerScore)} />
{stat.create(playerScore) && <StatValue value={stat.create(playerScore)} />}
</div>
))}
</div>