From 71bc7a63c8ef340da1ad40009877f4812a6fc22c Mon Sep 17 00:00:00 2001 From: Anusha Date: Tue, 12 Nov 2024 07:34:54 +0500 Subject: [PATCH] fix navigation to annouce room --- src/pages/workspace/WorkspacesListPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/workspace/WorkspacesListPage.tsx b/src/pages/workspace/WorkspacesListPage.tsx index db21700a0c47e..3ba0c46aa7911 100755 --- a/src/pages/workspace/WorkspacesListPage.tsx +++ b/src/pages/workspace/WorkspacesListPage.tsx @@ -271,7 +271,7 @@ function WorkspacesListPage() { } return Object.values(reports).reduce((result, report) => { - if (!report?.reportID || !report.policyID) { + if (!report?.reportID || !report.policyID || report.parentReportID) { return result; }