diff --git a/src/libs/SidebarUtils.ts b/src/libs/SidebarUtils.ts index 820444443d78..1159edd6f061 100644 --- a/src/libs/SidebarUtils.ts +++ b/src/libs/SidebarUtils.ts @@ -118,6 +118,9 @@ function getOrderedReportIDs( const participantAccountIDs = Object.keys(report?.participants ?? {}).map(Number); if (currentUserAccountID && AccountUtils.isAccountIDOddNumber(currentUserAccountID) && participantAccountIDs.includes(CONST.ACCOUNT_ID.NOTIFICATIONS)) { + if (isInFocusMode) { + return ReportUtils.isUnread(report); + } return true; }