diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index cf04b090ad02..eb7fd9689264 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -6199,6 +6199,10 @@ function getPendingChatMembers(accountIDs: number[], previousPendingChatMembers: function getParentNavigationSubtitle(report: OnyxEntry, isParentReportArchived = false, reportAttributes?: ReportAttributesDerivedValue['reports']): ParentNavigationSummaryParams { const parentReport = getParentReport(report); + if (report?.hasParentAccess === false) { + return {}; + } + if (isEmptyObject(parentReport)) { const ownerAccountID = report?.ownerAccountID; const personalDetails = ownerAccountID ? allPersonalDetails?.[ownerAccountID] : undefined;