File tree 4 files changed +12
-6
lines changed
4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @clerk/clerk-js ' : minor
3
+ ' @clerk/types ' : minor
4
+ ---
5
+
6
+ Replace ` redirectUrl ` with ` afterJoinWaitlistUrl ` in ` <Waitlist /> ` component
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ export const WaitlistForm = (props: WaitlistFormProps) => {
40
40
wizard . nextStep ( ) ;
41
41
42
42
setTimeout ( ( ) => {
43
- if ( ctx . redirectUrl ) {
44
- void navigate ( ctx . redirectUrl ) ;
43
+ if ( ctx . afterJoinWaitlistUrl ) {
44
+ void navigate ( ctx . afterJoinWaitlistUrl ) ;
45
45
}
46
46
} , 2000 ) ;
47
47
return ;
@@ -91,7 +91,7 @@ export const WaitlistForm = (props: WaitlistFormProps) => {
91
91
< Header . Title localizationKey = { localizationKeys ( 'waitlist.success.title' ) } />
92
92
< Header . Subtitle localizationKey = { localizationKeys ( 'waitlist.success.subtitle' ) } />
93
93
</ Header . Root >
94
- { ctx . redirectUrl && (
94
+ { ctx . afterJoinWaitlistUrl && (
95
95
< Flex
96
96
direction = 'col'
97
97
elementDescriptor = { descriptors . main }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type { WaitlistCtx } from '../../types';
6
6
7
7
export type WaitlistContextType = WaitlistCtx & {
8
8
signInUrl : string ;
9
- redirectUrl ?: string ;
9
+ afterJoinWaitlistUrl ?: string ;
10
10
} ;
11
11
12
12
export const WaitlistContext = createContext < WaitlistCtx | null > ( null ) ;
Original file line number Diff line number Diff line change @@ -1308,9 +1308,9 @@ export type OrganizationListProps = {
1308
1308
1309
1309
export type WaitlistProps = {
1310
1310
/**
1311
- * Full URL or path to navigate after successful waitlist submission .
1311
+ * Full URL or path to navigate after join waitlist.
1312
1312
*/
1313
- redirectUrl ?: string ;
1313
+ afterJoinWaitlistUrl ?: string ;
1314
1314
/**
1315
1315
* Customisation options to fully match the Clerk components to your own brand.
1316
1316
* These options serve as overrides and will be merged with the global `appearance`
You can’t perform that action at this time.
0 commit comments