Skip to content

Commit

Permalink
fix: make leaderboard lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu committed May 22, 2024
1 parent fc5a4c3 commit 8281012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Points/CampaignLeaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export const CampaignLeaderboard = ({ campaign }: { campaign?: Campaign }) => {
<SvgIcon component={TitleStar} inheritViewBox sx={{ mr: '8px', mt: '4px' }} />
<Box sx={{ flex: '1' }}>
<Typography variant="h2" fontWeight={700} sx={{ mr: '8px', display: 'inline' }}>
{isGlobal ? 'Global' : campaign?.name} Leaderboard
{isGlobal ? 'Global' : campaign?.name} leaderboard
</Typography>
</Box>
</Box>
Expand Down

0 comments on commit 8281012

Please sign in to comment.