-
Notifications
You must be signed in to change notification settings - Fork 402
feat: Remove deprecated SDK props #7088
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
base: vincent-and-the-doctor
Are you sure you want to change the base?
Conversation
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
| type ClerkOptionsLegacyRedirectProps = { | ||
| /** | ||
| * @deprecated Use `signInFallbackRedirectUrl` or `signInForceRedirectUrl` instead. | ||
| */ | ||
| afterSignInUrl?: string | null; | ||
| /** | ||
| * @deprecated Use `signUpFallbackRedirectUrl` or `signUpForceRedirectUrl` instead. | ||
| */ | ||
| afterSignUpUrl?: string | null; | ||
| /** | ||
| * @deprecated Use `signInFallbackRedirectUrl`, `signInForceRedirectUrl`, `signUpFallbackRedirectUrl`, or `signUpForceRedirectUrl` instead. | ||
| */ | ||
| redirectUrl?: string | null; | ||
| }; |
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 require a clerk-js major ? Are we doing that ?
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.
Yep. I can split the clerk-js specific changes to a separate PR in case we stay on v5.
Description
Removing deprecated props
Checklist
pnpm testruns as expected.pnpm buildruns as expected.Type of change