From 663eb40fe11126d083df2b858872ba848fa0a1d3 Mon Sep 17 00:00:00 2001 From: Carlos Barros <765936+barros001@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:28:30 -0500 Subject: [PATCH] removed unnecessary if block that was removing the policy name from header when it was not supposed to. --- src/libs/ReportUtils.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index ee2dcf5d02d6..be75f6c28909 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -2585,12 +2585,6 @@ function getParentNavigationSubtitle(report: OnyxEntry): ParentNavigatio return {}; } - if (isIOURequest(parentReport)) { - return { - reportName: getReportName(parentReport), - }; - } - return { reportName: getReportName(parentReport), workspaceName: getPolicyName(parentReport, true),