Skip to content

Commit 7dbad4c

Browse files
authoredNov 11, 2024··
refactor(clerk-js,types): Replace redirectUrl with afterJoinWaitlistUrl in <Waitlist /> component (#4532)
1 parent b22d3f9 commit 7dbad4c

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed
 

‎.changeset/spotty-pans-give.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@clerk/clerk-js': minor
3+
'@clerk/types': minor
4+
---
5+
6+
Replace `redirectUrl` with `afterJoinWaitlistUrl` in `<Waitlist />` component

‎packages/clerk-js/src/ui/components/Waitlist/WaitlistForm.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export const WaitlistForm = (props: WaitlistFormProps) => {
4040
wizard.nextStep();
4141

4242
setTimeout(() => {
43-
if (ctx.redirectUrl) {
44-
void navigate(ctx.redirectUrl);
43+
if (ctx.afterJoinWaitlistUrl) {
44+
void navigate(ctx.afterJoinWaitlistUrl);
4545
}
4646
}, 2000);
4747
return;
@@ -91,7 +91,7 @@ export const WaitlistForm = (props: WaitlistFormProps) => {
9191
<Header.Title localizationKey={localizationKeys('waitlist.success.title')} />
9292
<Header.Subtitle localizationKey={localizationKeys('waitlist.success.subtitle')} />
9393
</Header.Root>
94-
{ctx.redirectUrl && (
94+
{ctx.afterJoinWaitlistUrl && (
9595
<Flex
9696
direction='col'
9797
elementDescriptor={descriptors.main}

‎packages/clerk-js/src/ui/contexts/components/Waitlist.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { WaitlistCtx } from '../../types';
66

77
export type WaitlistContextType = WaitlistCtx & {
88
signInUrl: string;
9-
redirectUrl?: string;
9+
afterJoinWaitlistUrl?: string;
1010
};
1111

1212
export const WaitlistContext = createContext<WaitlistCtx | null>(null);

‎packages/types/src/clerk.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1308,9 +1308,9 @@ export type OrganizationListProps = {
13081308

13091309
export type WaitlistProps = {
13101310
/**
1311-
* Full URL or path to navigate after successful waitlist submission.
1311+
* Full URL or path to navigate after join waitlist.
13121312
*/
1313-
redirectUrl?: string;
1313+
afterJoinWaitlistUrl?: string;
13141314
/**
13151315
* Customisation options to fully match the Clerk components to your own brand.
13161316
* These options serve as overrides and will be merged with the global `appearance`

0 commit comments

Comments
 (0)
Please sign in to comment.