Skip to content

Commit 2f38bfd

Browse files
authored
Merge pull request #47 from qlemaire22/fix-matchup-numbers
Fix matchup numbers
2 parents 1a774a5 + 1869cbe commit 2f38bfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/widgets/PlayerMatchupStats.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const matchupsSortedByRace = playerMatchupStats.matchups.sort((a, b) => a.race.l
3535
<span class="text-green-400"> W</span>
3636
</td>
3737
<td class="pr-2 text-right text-sm text-gray-100">
38-
{matchup.aggregated.wins_count}
38+
{matchup.aggregated.losses_count}
3939
<span class="text-red-400"> L</span>
4040
</td>
4141
<td class=" text-right text-sm text-gray-100">{Math.round(matchup.aggregated.win_rate)}%</td>

0 commit comments

Comments
 (0)