Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
SheepTester committed Oct 22, 2024
1 parent f0e7853 commit 09bcb05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/onboarding/Leaderboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ const Leaderboard = ({ user }: LeaderboardProps) => {
return (
<div
className={styles.wrapper}
style={{ height: `calc(${users.length} * var(--leaderboard-height))`
}}>
style={{ height: `calc(${users.length} * var(--leaderboard-height))` }}
>
{users.map(({ name, points, image }) => {
const position = sorted.indexOf(name);
return (
Expand Down

0 comments on commit 09bcb05

Please sign in to comment.