From 56c0c0fbd6f89a7531451e630f40602d2955cb00 Mon Sep 17 00:00:00 2001 From: daledah Date: Tue, 18 Jun 2024 11:19:41 +0700 Subject: [PATCH] fix: Two unread markers when marking message unread in invoice thread --- src/pages/home/report/ReportActionsList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/home/report/ReportActionsList.tsx b/src/pages/home/report/ReportActionsList.tsx index 4e2d6602379b..dbb7d811e868 100644 --- a/src/pages/home/report/ReportActionsList.tsx +++ b/src/pages/home/report/ReportActionsList.tsx @@ -484,7 +484,7 @@ function ReportActionsList({ return !ReportUtils.isCanceledTaskReport(report, parentReportAction); } - return ReportUtils.isExpenseReport(report) || ReportUtils.isIOUReport(report); + return ReportUtils.isExpenseReport(report) || ReportUtils.isIOUReport(report) || ReportUtils.isInvoiceReport(report); }, [parentReportAction, report, sortedVisibleReportActions]); const calculateUnreadMarker = useCallback(() => {