diff --git a/src/components/SelectionList/Search/TransactionListItemRow.tsx b/src/components/SelectionList/Search/TransactionListItemRow.tsx index 452af82fb78..0adc7ee21fd 100644 --- a/src/components/SelectionList/Search/TransactionListItemRow.tsx +++ b/src/components/SelectionList/Search/TransactionListItemRow.tsx @@ -111,7 +111,7 @@ function MerchantCell({transactionItem, showTooltip, isLargeScreenWidth}: Transa const description = TransactionUtils.getDescription(transactionItem); let merchant = transactionItem.shouldShowMerchant ? transactionItem.formattedMerchant : description; - if (TransactionUtils.hasReceipt(transactionItem) && TransactionUtils.isReceiptBeingScanned(transactionItem)) { + if (TransactionUtils.hasReceipt(transactionItem) && TransactionUtils.isReceiptBeingScanned(transactionItem) && transactionItem.shouldShowMerchant) { merchant = translate('iou.receiptStatusTitle'); }