disable login

This commit is contained in:
Abi Raja 2023-12-14 17:04:36 -05:00
parent 44d3776bd8
commit bc9330fd57

View File

@ -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 (
<> <>