Skip to content

Commit

Permalink
Update GlobalLeaderboard.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
YoctoProductions committed Dec 28, 2024
1 parent ff589fc commit 985fcb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/ui/GlobalLeaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ function LeaderboardCard({ type, row, index }: { type: string, row: any, index:
<div className={clsx('leaderboard-card', isFirst && 'leaderboard-card--first')}>
<div className="leaderboard-card__top">
<h3 className="text-center">
#{index + 1} - <Link to={`/profile?username=${encodeURIComponent(row.username)}`} target="_blank" rel="noreferrer" style={{ color: isFirst ? 'white' : 'black' }}>
#{index + 1} - <Link to={`/profile?username=${encodeURIComponent(row.username)}`} rel="noreferrer" style={{ color: isFirst ? 'white' : 'black' }}>
{row.username}
</Link>
</h3>
Expand Down

0 comments on commit 985fcb5

Please sign in to comment.