From 0279913806506d5feca1eea82c81d0d1dc97eca0 Mon Sep 17 00:00:00 2001 From: nkdengineer Date: Mon, 12 Aug 2024 10:30:55 +0700 Subject: [PATCH] fix: Expense RHP closes after clicking on the From subtitle link --- src/components/ParentNavigationSubtitle.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ParentNavigationSubtitle.tsx b/src/components/ParentNavigationSubtitle.tsx index 3d4216704234..f60b877a5d23 100644 --- a/src/components/ParentNavigationSubtitle.tsx +++ b/src/components/ParentNavigationSubtitle.tsx @@ -44,7 +44,7 @@ function ParentNavigationSubtitle({parentNavigationSubtitleData, parentReportAct Navigation.goBack(ROUTES.REPORT_WITH_ID.getRoute(parentReportID)); if (isVisibleAction && !isOffline) { // Pop the chat report screen before navigating to the linked report action. - Navigation.goBack(ROUTES.REPORT_WITH_ID.getRoute(parentReportID, parentReportActionID)); + Navigation.goBack(ROUTES.REPORT_WITH_ID.getRoute(parentReportID, parentReportActionID), true); } }} accessibilityLabel={translate('threads.parentNavigationSummary', {reportName, workspaceName})}