diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 74785c6bbfa9..21fe9d54dfc7 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -4088,7 +4088,7 @@ function getIOUReportActionDisplayMessage(reportAction) { let displayMessage; if (originalMessage.type === CONST.IOU.REPORT_ACTION_TYPE.PAY) { const {IOUReportID} = originalMessage; - const {amount, currency} = originalMessage.IOUDetails; + const {amount, currency} = originalMessage.IOUDetails || originalMessage; const formattedAmount = CurrencyUtils.convertToDisplayString(amount, currency); const iouReport = getReport(IOUReportID); const payerName = isExpenseReport(iouReport) ? getPolicyName(iouReport) : getDisplayNameForParticipant(iouReport.managerID, true);