Skip to content

Commit

Permalink
Merge pull request ppy#11423 from nanaya/daily-challenge-colour
Browse files Browse the repository at this point in the history
Fix missing closing bracket in daily challenge tier colour
  • Loading branch information
notbakaneko authored Aug 11, 2024
2 parents a115331 + 6bbd075 commit a66d151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/profile-page/daily-challenge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function tier(days: number) {

function tierStyle(days: number) {
return {
'--colour': `var(--level-tier-${tier(days)}`,
'--colour': `var(--level-tier-${tier(days)})`,
} as React.CSSProperties;
}

Expand Down

0 comments on commit a66d151

Please sign in to comment.