Skip to content

Commit f29977f

Browse files
authored
Merge pull request Expensify#83423 from daledah/fix/82402
fix: Merchant cell in the expenses table doesn't show the word Scanning...
2 parents 324a739 + d0991bb commit f29977f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libs/SearchUIUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ function getShouldShowMerchant(data: OnyxTypes.SearchResults['data']): boolean {
11551155
if (isTransactionEntry(key)) {
11561156
const item = data[key];
11571157
const merchant = item.modifiedMerchant ? item.modifiedMerchant : (item.merchant ?? '');
1158-
return !isInvalidMerchantValue(merchant);
1158+
return !isInvalidMerchantValue(merchant) || isScanning(item);
11591159
}
11601160
return false;
11611161
});

0 commit comments

Comments
 (0)