diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 885a13621ea4..58553acfee5c 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -4087,7 +4087,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);