Updated skywars stats

This commit is contained in:
2025-08-22 22:28:26 +02:00
parent 4596177eaa
commit adea71938c
6 changed files with 41 additions and 43 deletions

View File

@@ -64,15 +64,15 @@ export default function SkyWarsStats({ stats }: { stats: Player["player"]["stats
},
{
title: <p>KD</p>,
stat: <p>{kd}</p>
stat: <p className="text-muted-foreground">{kd}</p>
},
{
title: <p>Wins</p>,
stat: <p>{formatNumber(stats.wins)}</p>
stat: <p className="text-muted-foreground">{formatNumber(stats.wins)}</p>
},
{
title: <p>WL</p>,
stat: <p>{wl}</p>
stat: <p className="text-muted-foreground">{wl}</p>
}
]}
/>