diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 66d9e2d08ae7..40a598891dcd 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -2021,8 +2021,8 @@ function shouldReportBeInOptionList(report, currentReportId, isInGSDMode, iouRep return false; } - // Hide thread reports that haven't been commented on - if (isThread(report) && !report.lastMessageText) { + // Hide only chat threads that haven't been commented on (other threads are actionable) + if (isChatThread(report) && !report.lastMessageText) { return false; }