We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f7ee1f + 6c0cb4f commit 76ebe5eCopy full SHA for 76ebe5e
1 file changed
apps/web/src/components/AuthScreen.tsx
@@ -3,7 +3,7 @@ import { SignIn } from "@clerk/react";
3
export default function AuthScreen() {
4
return (
5
<div style={{ display: "flex", justifyContent: "center", alignItems: "center", minHeight: "100dvh" }}>
6
- <SignIn />
+ <SignIn fallbackRedirectUrl={typeof window !== 'undefined' ? window.location.href : '/'} signUpFallbackRedirectUrl={typeof window !== 'undefined' ? window.location.href : '/'} />
7
</div>
8
);
9
}
0 commit comments