diff --git a/client/transactions/list/index.tsx b/client/transactions/list/index.tsx index a4b2108f308..6d2a9f0e4b9 100644 --- a/client/transactions/list/index.tsx +++ b/client/transactions/list/index.tsx @@ -418,12 +418,10 @@ export const TransactionsList = ( return { value: feeAmount, display: clickable( - 0 !== feeAmount - ? formatCurrency( - isCardReader ? txn.amount : txn.fees * -1, - currency - ) - : __( 'N/A', 'woocommerce-payments' ) + formatCurrency( + isCardReader ? txn.amount : txn.fees * -1, + currency + ) ), }; };