-
Notifications
You must be signed in to change notification settings - Fork 405
fix(clerk-js): Disambiguate redirect url options between flows #5645
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
🦋 Changeset detectedLatest commit: e509648 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
| const redirectUrls = new RedirectUrls( | ||
| options, | ||
| { | ||
| ...ctx, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doesn't this mean that SignInContext and SignUpContext still contain a forceRedirectUrl prop? Can we completely remove any and all usage of forceRedirectUrl except at the component boundary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll remove from the context, as far as I can tell forceRedirectUrl isn't actually used outside of this assignment in the components, so we should be safe.
|
would you mind adding a test for the "render sign in modal, click sign up, sign up with existing account" flow with the props specified? |
|
@dstaley done! |
Description
Fixes an issue where
fallbackRedirectUrlandforceRedirectUrlpassed to a specific flow would be improperly passed to the other flow in a modal case.Example:
Checklist
pnpm testruns as expected.pnpm buildruns as expected.Type of change