Fixed Infinate Redirect When trying to Login or Signup

This commit is contained in:
Ahmad 2024-03-23 16:05:31 -04:00
parent 525e9311e0
commit fd40614b93
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
5 changed files with 6 additions and 6 deletions

View file

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