diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index f38019098b0f4..45b1aa7360f19 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -4950,6 +4950,17 @@ function getReportPreviewMessage( // This covers group chats where the last action is a track expense action const linkedTransaction = getLinkedTransaction(iouReportAction); if (isEmptyObject(linkedTransaction)) { + const originalMessage = getOriginalMessage(iouReportAction); + const amount = originalMessage?.amount; + const currency = originalMessage?.currency; + const comment = originalMessage?.comment; + + if (amount && currency) { + const formattedAmount = convertToDisplayString(amount, currency); + // eslint-disable-next-line @typescript-eslint/no-deprecated + return translateLocal('iou.trackedAmount', {formattedAmount, comment}); + } + return reportActionMessage; }