diff --git a/src/libs/actions/Report.ts b/src/libs/actions/Report.ts index cf1c44e1d69c..ea8aa5414c7b 100644 --- a/src/libs/actions/Report.ts +++ b/src/libs/actions/Report.ts @@ -2934,6 +2934,10 @@ function openReportFromDeepLink(url: string) { Navigation.navigate(route as Route, CONST.NAVIGATION.ACTION_TYPE.PUSH); }; + if (isAnonymousUser()) { + handleDeeplinkNavigation(); + return; + } // We need skip deeplinking if the user hasn't completed the guided setup flow. isOnboardingFlowCompleted({ onNotCompleted: startOnboardingFlow,