added number formatting to some values
All checks were successful
deploy / deploy (push) Successful in 55s

This commit is contained in:
Lee
2023-10-23 11:39:48 +01:00
parent 3a2dbe6423
commit 6c9554f9a0
3 changed files with 6 additions and 6 deletions

View File

@ -171,7 +171,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
playerData.rank / 50,
)}`}
>
<p>#{playerData.rank}</p>
<p>#{formatNumber(playerData.rank)}</p>
</a>
</div>
@ -188,7 +188,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
svg
className="!h-7 !w-7"
/>
<p>#{playerData.countryRank}</p>
<p>#{formatNumber(playerData.countryRank)}</p>
</a>
</div>