diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 284c56ce2c1e..ed751c5c006e 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -907,7 +907,7 @@ function isChatThread(report: OnyxEntry): boolean { } function isDM(report: OnyxEntry): boolean { - return isChatReport(report) && !getChatType(report); + return isChatReport(report) && !getChatType(report) && !isThread(report); } function isSelfDM(report: OnyxEntry): boolean { @@ -1217,7 +1217,6 @@ function isMoneyRequestReport(reportOrID: OnyxEntry | string): boolean { function isOneOnOneChat(report: OnyxEntry): boolean { const participantAccountIDs = report?.participantAccountIDs ?? []; return ( - !isThread(report) && !isChatRoom(report) && !isExpenseRequest(report) && !isMoneyRequestReport(report) &&