diff --git a/src/pages/home/ReportScreen.js b/src/pages/home/ReportScreen.js index fd2260a898b1..c88e1dce4fc4 100644 --- a/src/pages/home/ReportScreen.js +++ b/src/pages/home/ReportScreen.js @@ -195,10 +195,12 @@ class ReportScreen extends React.Component { // We create policy rooms for all policies, however we don't show them unless // - It's a free plan workspace // - The report includes guides participants (@team.expensify.com) for 1:1 Assigned + // - It's an archived room if (!Permissions.canUseDefaultRooms(this.props.betas) && ReportUtils.isDefaultRoom(this.props.report) && ReportUtils.getPolicyType(this.props.report, this.props.policies) !== CONST.POLICY.TYPE.FREE && !ReportUtils.hasExpensifyGuidesEmails(lodashGet(this.props.report, ['participants'], [])) + && !ReportUtils.isArchivedRoom(this.props.report) ) { return null; }