diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index f41ad0b75b42..8a3134ab606a 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -657,7 +657,7 @@ function isDM(report) { * @returns {Boolean} */ function hasSingleParticipant(report) { - return report.participantAccountIDs && report.participantAccountIDs.length === 1; + return report && report.participantAccountIDs && report.participantAccountIDs.length === 1; } /**