diff --git a/src/components/ReportActionItem/ReportPreview.tsx b/src/components/ReportActionItem/ReportPreview.tsx index 6bb70a275a30..b7ed78a30087 100644 --- a/src/components/ReportActionItem/ReportPreview.tsx +++ b/src/components/ReportActionItem/ReportPreview.tsx @@ -398,8 +398,11 @@ function ReportPreview({ if (formattedDescription ?? moneyRequestComment) { return {supportText: truncate(StringUtils.lineBreaksToSpaces(formattedDescription ?? moneyRequestComment), {length: CONST.REQUEST_PREVIEW.MAX_LENGTH})}; } - if (formattedMerchant === CONST.TRANSACTION.DEFAULT_MERCHANT) { - return {supportText: formattedMerchant}; + + if (numberOfRequests === 1) { + return { + supportText: '', + }; } return { supportText: translate('iou.expenseCount', { @@ -507,7 +510,7 @@ function ReportPreview({ )} - {shouldShowSubtitle && supportText && ( + {shouldShowSubtitle && !!supportText && ( {supportText}