diff --git a/src/libs/actions/Report.ts b/src/libs/actions/Report.ts index 4ac46fcf212e..2fab25a73b77 100644 --- a/src/libs/actions/Report.ts +++ b/src/libs/actions/Report.ts @@ -2110,6 +2110,8 @@ function leaveRoom(reportID: string, isWorkspaceMemberLeavingWorkspaceRoom = fal const participantAccountIDs = PersonalDetailsUtils.getAccountIDsByLogins([CONST.EMAIL.CONCIERGE]); const chat = ReportUtils.getChatByParticipants(participantAccountIDs); if (chat?.reportID) { + // We should call Navigation.goBack to pop the current route first before navigating to Concierge. + Navigation.goBack(ROUTES.HOME); Navigation.navigate(ROUTES.REPORT_WITH_ID.getRoute(chat.reportID)); } }