diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 294c8c4c5268..25e6292e8471 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -4268,10 +4268,6 @@ function getReportPreviewMessage( let actualPayerName = report.managerID === currentUserAccountID ? '' : getDisplayNameForParticipant({accountID: report.managerID, shouldUseShortForm: true}); actualPayerName = actualPayerName && isForListPreview && !isPreviewMessageForParentChatReport ? `${actualPayerName}:` : actualPayerName; const payerDisplayName = isPreviewMessageForParentChatReport ? payerName : actualPayerName; - if (isForListPreview && report?.parentReportID != null) { - const payerText = isDM(parentReport) && translatePhraseKey === 'iou.payerPaidAmount' ? '' : payerDisplayName; - return translateLocal(translatePhraseKey, {amount: formattedReimbursableAmount, payer: payerText}); - } return translateLocal(translatePhraseKey, {amount: formattedReimbursableAmount, payer: payerDisplayName ?? ''}); }