disable login
This commit is contained in:
parent
44d3776bd8
commit
bc9330fd57
@ -17,7 +17,7 @@ function AppContainer() {
|
|||||||
// If Clerk is loaded and the user is not signed in, show the sign up popup
|
// If Clerk is loaded and the user is not signed in, show the sign up popup
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isLoaded && !isSignedIn) {
|
if (isLoaded && !isSignedIn) {
|
||||||
setShowPopup(true);
|
// setShowPopup(true);
|
||||||
}
|
}
|
||||||
}, [isSignedIn, isLoaded]);
|
}, [isSignedIn, isLoaded]);
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ function AppContainer() {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// If Clerk is still loading, show a spinner
|
// If Clerk is still loading, show a spinner
|
||||||
if (!isLoaded) return <FullPageSpinner />;
|
// if (!isLoaded) return <FullPageSpinner />;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user