Skip to content

Commit

Permalink
fix leaderboard sort
Browse files Browse the repository at this point in the history
  • Loading branch information
minhd-vu committed Feb 26, 2024
1 parent ce3373c commit 365b841
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/leaderboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ async function getLeaderboardUsers() {
},
orderBy: [
{
wins: "asc",
wins: "desc",
},
{
kills: "asc",
kills: "desc",
},
{
deaths: "desc",
deaths: "asc",
},
],
});
Expand Down

0 comments on commit 365b841

Please sign in to comment.