diff --git a/mobile/screens/onboarding/WaitingForVerification.tsx b/mobile/screens/onboarding/WaitingForVerification.tsx index 9a7cc84a..491023c9 100644 --- a/mobile/screens/onboarding/WaitingForVerification.tsx +++ b/mobile/screens/onboarding/WaitingForVerification.tsx @@ -66,7 +66,9 @@ const WaitingForVerification = ({ // Run reloadUserState when the screen is mounted useEffect(() => { - reloadUserState(); + if (state.id) { + reloadUserState(); + } }, []); const openVerificationCallPDF = async () => { @@ -101,7 +103,9 @@ const WaitingForVerification = ({ }; return ( - +