File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1827,7 +1827,7 @@ export class Clerk implements ClerkInterface {
1827
1827
1828
1828
const setActiveNavigate : SetActiveNavigate = async ( { session } ) => {
1829
1829
await navigateIfTaskExists ( session , {
1830
- baseUrl : displayConfig . signInUrl ,
1830
+ baseUrl : params . signInUrl ?? displayConfig . signInUrl ,
1831
1831
navigate : this . navigate ,
1832
1832
} ) ;
1833
1833
} ;
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export const useSignInContext = (): SignInContextType => {
126
126
return ;
127
127
}
128
128
129
- return navigate ( `/tasks/${ currentTaskKey } ` ) ;
129
+ return navigate ( `.. /tasks/${ currentTaskKey } ` ) ;
130
130
} ;
131
131
132
132
const taskUrl = clerk . session ?. currentTask
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ export const useSignUpContext = (): SignUpContextType => {
121
121
return ;
122
122
}
123
123
124
- return navigate ( `/tasks/${ currentTaskKey } ` ) ;
124
+ return navigate ( `.. /tasks/${ currentTaskKey } ` ) ;
125
125
} ;
126
126
127
127
const taskUrl = clerk . session ?. currentTask
You can’t perform that action at this time.
0 commit comments