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 ba754b0 commit f0e7853
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/onboarding/Leaderboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ const Leaderboard = ({ user }: LeaderboardProps) => {
}, [userPoints]);

return (
<div className={styles.wrapper} style={{ height: `calc(${users.length} * var(--leaderboard-height))` }}>
<div
className={styles.wrapper}
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 f0e7853

Please sign in to comment.