diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index ec695d9e1023..1f5d743a9621 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -3322,6 +3322,11 @@ function getReportActionMessage(reportAction: OnyxEntry, reportID? if (reportAction.actionName === CONST.REPORT.ACTIONS.TYPE.HOLD) { return Localize.translateLocal('iou.heldExpense'); } + + if (reportAction.actionName === CONST.REPORT.ACTIONS.TYPE.EXPORTED_TO_INTEGRATION) { + return ReportActionsUtils.getExportIntegrationLastMessageText(reportAction); + } + if (reportAction.actionName === CONST.REPORT.ACTIONS.TYPE.UNHOLD) { return Localize.translateLocal('iou.unheldExpense'); } @@ -3375,6 +3380,10 @@ function getReportName(report: OnyxEntry, policy?: OnyxEntry, pa return formatReportLastMessageText(formattedName); } + if (!isEmptyObject(parentReportAction) && ReportActionsUtils.isOldDotReportAction(parentReportAction)) { + return ReportActionsUtils.getMessageOfOldDotReportAction(parentReportAction); + } + if (parentReportActionMessage?.isDeletedParentAction) { return Localize.translateLocal('parentReportAction.deletedMessage'); }