diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index aeebb61f1840..aee4fd6d1aef 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -1219,7 +1219,8 @@ function getMoneyRequestReportName(report, policy = undefined) { * @returns {Object} */ function getReport(reportID) { - return lodashGet(allReports, `${ONYXKEYS.COLLECTION.REPORT}${reportID}`, {}); + // Deleted reports are set to null and lodashGet will still return null in that case, so we need to add an extra check + return lodashGet(allReports, `${ONYXKEYS.COLLECTION.REPORT}${reportID}`, {}) || {}; } /**