Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make leaderboard link in Top Users go to respective role #231

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/creators/TopUsersCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function UserInfo({
return (
<div className='d-flex align-items-center'>
<div className='position-relative'>
<Link href={`/leaderboard/${user.address}`}>{avatar}</Link>
<Link href={`/leaderboard/${user.address}?role=${type}`}>{avatar}</Link>
{[1, 2, 3].includes(rank) && (
<Medal
className='position-absolute FontTiny'
Expand All @@ -172,7 +172,7 @@ function UserInfo({
)}
</div>
<div className='d-flex flex-column' style={{ minWidth: 0 }}>
<Link href={`/leaderboard/${user.address}`} passHref>
<Link href={`/leaderboard/${user.address}?role=${type}`} passHref>
<a className='ColorNormal'>{name}</a>
</Link>
<div className='d-flex align-items-center ColorMuted GapMini'>
Expand Down
Loading