From 92887e84f0d34801ec6dade933a867b80c340554 Mon Sep 17 00:00:00 2001 From: Stephen Zhou Date: Fri, 20 Mar 2026 11:01:12 +0800 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- web/app/components/splash.tsx | 3 --- 1 file changed, 3 deletions(-) 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)