Skip to content

Commit

Permalink
uses CONFIG.onboardingHome instead of /onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
pragyakallanagoudar committed May 14, 2024
1 parent 1b3a596 commit a12a127
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/(auth)/email-verified/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use client';

import { BigBlueLinkButton } from '@/components/Buttons';
import CONFIG from '@/lib/configs';
import { Flex, SmallCard } from '@/styles/containers';
import { H2 } from '@/styles/text';

Expand All @@ -9,7 +10,7 @@ export default function EmailVerified() {
<SmallCard>
<Flex $direction="column" $gap="20px">
<H2>Your email has been verified!</H2>
<BigBlueLinkButton type="button" href="/onboarding/roles">
<BigBlueLinkButton type="button" href={CONFIG.onboardingHome}>
Go to Onboarding
</BigBlueLinkButton>
</Flex>
Expand Down

0 comments on commit a12a127

Please sign in to comment.