diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 808c5a5168ba..8dc1c9967f13 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -1181,7 +1181,7 @@ function hasOnlyTransactionsWithPendingRoutes(iouReportID: string | undefined): * If the report is a thread and has a chat type set, it is a workspace chat. */ function isWorkspaceThread(report: OnyxEntry): boolean { - return isThread(report) && isChatReport(report) && !isDM(report); + return isThread(report) && isChatReport(report) && !!getChatType(report); } /**