From 0f16c1d8a2b4938d0050d51676ee116d38ad630e Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Thu, 14 Dec 2023 17:06:40 -0500 Subject: [PATCH] fix type errors --- frontend/src/components/hosted/AppContainer.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/hosted/AppContainer.tsx b/frontend/src/components/hosted/AppContainer.tsx index 6eee70c..705d1c5 100644 --- a/frontend/src/components/hosted/AppContainer.tsx +++ b/frontend/src/components/hosted/AppContainer.tsx @@ -3,7 +3,7 @@ import App from "../../App"; import { useEffect, useRef, useState } from "react"; import { AlertDialog } from "@radix-ui/react-alert-dialog"; import { AlertDialogContent } from "../ui/alert-dialog"; -import FullPageSpinner from "../custom-ui/FullPageSpinner"; +// import FullPageSpinner from "../custom-ui/FullPageSpinner"; import { useAuthenticatedFetch } from "./useAuthenticatedFetch"; function AppContainer() { @@ -18,6 +18,7 @@ function AppContainer() { useEffect(() => { if (isLoaded && !isSignedIn) { // setShowPopup(true); + setShowPopup(false); } }, [isSignedIn, isLoaded]);