Skip to content

Commit

Permalink
remembered to format this time 🙏
Browse files Browse the repository at this point in the history
  • Loading branch information
Not-a-cowfr committed Jan 15, 2025
1 parent 9872e3e commit c7c2af1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/stats/player/profiles.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
<div class="flex flex-row justify-between gap-4 rounded-sm bg-muted p-2 text-xl">
<span class="font-semibold">Total Weight</span>
<span class="font-normal">
{(profiles.reduce((sum, profile) => sum + profile.weight, 0) + selected.weight).toLocaleString()}
{(
profiles.reduce((sum, profile) => sum + profile.weight, 0) + selected.weight
).toLocaleString()}
</span>
</div>
</div>
Expand Down

0 comments on commit c7c2af1

Please sign in to comment.