Skip to content

Commit

Permalink
fix: renames icon & adds missing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
varortz committed May 19, 2024
1 parent 9176f07 commit 0b193a8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/(auth)/email-verified/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function EmailVerified() {
return (
<SmallCard>
<Flex $direction="column" $align="center" $gap="20px">
<Icon type="blue_check" />
<Icon type="blueCheck" />
<AuthSubHeading>Your email has been verified!</AuthSubHeading>
<BigBlueLinkButton type="button" href={CONFIG.onboardingHome}>
Go to Onboarding
Expand Down
5 changes: 4 additions & 1 deletion src/app/(auth)/forgot-password/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ export default function ForgotPassword() {
<H4 $color="white">Resend Email</H4>
</BigBlueButton>
{emailSentCount > 1 && (
<P $color={COLORS.blueMid}>Email has been resent!</P>
<P $color={COLORS.greyDark}>
Email has been sent to
<span style={{ color: COLORS.blueDark }}> {email}</span>
</P>
)}
</Flex>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/app/(auth)/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export default function SignUp() {
{emailSentCount > 1 && (
<P $color={COLORS.greyDark}>
Email has been sent to
<span style={{ color: COLORS.blueDark }}>{email}</span>
<span style={{ color: COLORS.blueDark }}> {email}</span>
</P>
)}
</Flex>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ export const IconSvgs = {
/>
</svg>
),
blue_check: (
blueCheck: (
<svg
width="75"
height="76"
Expand Down

0 comments on commit 0b193a8

Please sign in to comment.