fix: hide rank if its 0

This commit is contained in:
metamethods 2024-12-31 20:57:50 -08:00
parent dc3b9ffc53
commit ded50f8780

View File

@ -17,7 +17,7 @@
{team.name} {team.name}
</p> </p>
{#if team.rank <= 5} {#if team.rank <= 5 && team.rank !== 0}
<p class="font-bold"> <p class="font-bold">
#{team.rank} #{team.rank}
</p> </p>