diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 94bf06fc2d1fa..15095f980246c 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -940,8 +940,8 @@ function shouldReportBeInOptionList(report, reportIDFromRoute, isInGSDMode, curr return true; } - // Include default rooms unless you're on the default room beta - if (isDefaultRoom(report) && !Permissions.canUseDefaultRooms(betas)) { + // Include default rooms unless you're on the default room beta, unless you have an assigned guide + if (isDefaultRoom(report) && !Permissions.canUseDefaultRooms(betas) && !this.hasExpensifyGuidesEmails(lodashGet(report, ['participants'], []))) { return false; }