Skip to content

Commit 942a64e

Browse files
authored
Merge pull request #31174 from tienifr/fix/29060
Fix: Cannot navigate to Address page by deeplink
2 parents ecfd18c + 40b0e4d commit 942a64e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libs/actions/Report.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import * as PersonalDetailsUtils from '@libs/PersonalDetailsUtils';
2020
import * as Pusher from '@libs/Pusher/pusher';
2121
import * as ReportActionsUtils from '@libs/ReportActionsUtils';
2222
import * as ReportUtils from '@libs/ReportUtils';
23+
import SidebarUtils from '@libs/SidebarUtils';
2324
import * as UserUtils from '@libs/UserUtils';
2425
import Visibility from '@libs/Visibility';
2526
import CONFIG from '@src/CONFIG';
@@ -2003,7 +2004,7 @@ function openReportFromDeepLink(url, isAuthenticated) {
20032004

20042005
// Navigate to the report after sign-in/sign-up.
20052006
InteractionManager.runAfterInteractions(() => {
2006-
Session.waitForUserSignIn().then(() => {
2007+
SidebarUtils.isSidebarLoadedReady().then(() => {
20072008
if (route === ROUTES.CONCIERGE) {
20082009
navigateToConciergeChat(true);
20092010
return;

0 commit comments

Comments
 (0)