Skip to content

Commit a12a127

Browse files
uses CONFIG.onboardingHome instead of /onboarding
1 parent 1b3a596 commit a12a127

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/(auth)/email-verified/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use client';
22

33
import { BigBlueLinkButton } from '@/components/Buttons';
4+
import CONFIG from '@/lib/configs';
45
import { Flex, SmallCard } from '@/styles/containers';
56
import { H2 } from '@/styles/text';
67

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

0 commit comments

Comments
 (0)