Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
k2xl committed Dec 15, 2023
1 parent 20b8f98 commit 1351242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/[subdomain]/leaderboards/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export default function Leaderboards({ gmLeaderboard, rankedLeaderboard, reqUser
<div className='flex justify-center'>
<Link className='font-bold text-2xl hover:underline w-fit' href='/ranked'>Ranked Solves 🏅</Link>
</div>
{getLeaderboardTable(rankedLeaderboard, rankedLeaderboard.map(user => user.config?.calcRankedSolves || 0))}
{getLeaderboardTable(rankedLeaderboard, rankedLeaderboard?.map(user => user.config?.calcRankedSolves || 0))}
</div>
);
} else if (leaderboard === 'sgm') {
Expand Down

0 comments on commit 1351242

Please sign in to comment.