Skip to content

Commit

Permalink
fix: comment out splash screen
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi-bams committed Oct 7, 2024
1 parent 099f79f commit f3893a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Auth/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -132,7 +131,7 @@ export const AuthGuard = ({ children }: PropsWithChildren) => {

return (
<>
{splashDataLoading && <Splash />}
{/* {splashDataLoading && <Splash />} */}
{renderMainPage && children}
</>
)
Expand Down

0 comments on commit f3893a3

Please sign in to comment.