Skip to content
Open
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: 1 addition & 3 deletions src/components/leaderboard/LeaderboardConference.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,7 @@ export function LeaderboardConference({
</span>
<button
type="button"
onClick={() =>
setActiveConference(activeConference?.id === conf.id ? null : conf)
}
onClick={() => handleJoinConference(conf)}
className={`rounded-2xl px-3 py-1.5 text-xs font-semibold transition ${
activeConference?.id === conf.id
? 'bg-red-100 text-red-700 hover:bg-red-200 dark:bg-red-900/40 dark:text-red-400'
Expand Down
Loading