diff --git a/web/app/components/splash.tsx b/web/app/components/splash.tsx index 82b59fe1f6..94bd63805c 100644 --- a/web/app/components/splash.tsx +++ b/web/app/components/splash.tsx @@ -8,9 +8,6 @@ const Splash: FC = () => { const { isLoading, data: loginData } = useIsLogin() const isLoggedIn = loginData?.logged_in - if (isLoading || !isLoggedIn) - return null - return null } export default React.memo(Splash)