diff --git a/src/libs/Navigation/AppNavigator/AuthScreens.js b/src/libs/Navigation/AppNavigator/AuthScreens.js index dbbe137bafeeb..d07c214aced7c 100644 --- a/src/libs/Navigation/AppNavigator/AuthScreens.js +++ b/src/libs/Navigation/AppNavigator/AuthScreens.js @@ -70,6 +70,10 @@ import defaultScreenOptions from './defaultScreenOptions'; Onyx.connect({ key: ONYXKEYS.MY_PERSONAL_DETAILS, callback: (val) => { + if (!val) { + return; + } + const timezone = lodashGet(val, 'timezone', {}); const currentTimezone = moment.tz.guess(true);