diff --git a/src/components/Auth/index.tsx b/src/components/Auth/index.tsx index 94334e3b0..757448c7b 100644 --- a/src/components/Auth/index.tsx +++ b/src/components/Auth/index.tsx @@ -11,7 +11,6 @@ import { useUserStore } from '~/stores/useUserStore' import { sphinxBridge } from '~/testSphinxBridge' import { updateBudget } from '~/utils' import { isAndroid, isWebView } from '~/utils/isWebView' -import { Splash } from '../App/Splash' export const AuthGuard = ({ children }: PropsWithChildren) => { const [unAuthorized, setUnauthorized] = useState(false) @@ -132,7 +131,7 @@ export const AuthGuard = ({ children }: PropsWithChildren) => { return ( <> - {splashDataLoading && } + {/* {splashDataLoading && } */} {renderMainPage && children} )