diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index db4bb8ef651c..13481c063b75 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -2010,8 +2010,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; }