From e62f0291524fd9c5e6265820805e2a7c4486486c Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 17 Jun 2024 15:51:54 -0700 Subject: [PATCH] align web/native --- src/App.web.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.web.tsx b/src/App.web.tsx index b8a493b5ee..4308ac32cd 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -52,7 +52,7 @@ function InnerApp() { const theme = useColorModeTheme() const {_} = useLingui() useIntentHandler() - useStarterPackEntry() + const hasCheckedReferrer = useStarterPackEntry() // init useEffect(() => { @@ -78,7 +78,7 @@ function InnerApp() { }, [_]) // wait for session to resume - if (!isReady) return null + if (!isReady || !hasCheckedReferrer) return null return (