Skip to content

Commit

Permalink
fix: make leaderboard lowercase and activate second step (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu authored May 22, 2024
1 parent fc5a4c3 commit 01b0130
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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
4 changes: 2 additions & 2 deletions src/components/SplashScreen/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ export const SplashScreen = (): ReactElement => {
How it works
</Typography>
<Stack gap={3}>
<Step index={0} title="Lock SAFE to boost your points!" active={true} />
<Step index={1} title="Earn points for activity" active={false} />
<Step index={0} title="Lock SAFE to boost your points!" active />
<Step index={1} title="Earn points for activity" active />
<Step index={2} title="Get rewards for earned points" active={false} />
</Stack>
<Barcode className={css.barcode} />
Expand Down

0 comments on commit 01b0130

Please sign in to comment.