Updated Sentry Config and Clerk Components

This commit is contained in:
Ahmad 2024-12-22 16:19:23 -05:00
parent a3c568d5a1
commit b21ab83788
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
5 changed files with 29 additions and 6 deletions

View file

@ -1,5 +1,5 @@
import { SignIn } from '@clerk/nextjs';
export default function Page() {
return <SignIn signUpUrl='/sign-up' afterSignInUrl='/select-org' />;
return <SignIn signUpUrl='/sign-up' fallbackRedirectUrl='/select-org' />;
}

View file

@ -1,5 +1,5 @@
import { SignUp } from '@clerk/nextjs';
export default function Page() {
return <SignUp signInUrl='/sign-in' afterSignUpUrl='/select-org' />;
return <SignUp signInUrl='/sign-in' forceRedirectUrl='/select-org' />;
}