diff --git a/components/brave_wallet_ui/components/extension/transaction-detail-panel/index.tsx b/components/brave_wallet_ui/components/extension/transaction-detail-panel/index.tsx index cf02b16942f4..aa2c28131a2e 100644 --- a/components/brave_wallet_ui/components/extension/transaction-detail-panel/index.tsx +++ b/components/brave_wallet_ui/components/extension/transaction-detail-panel/index.tsx @@ -152,6 +152,11 @@ const TransactionDetailPanel = (props: Props) => { liveTransaction.txType === BraveWallet.TransactionType.ERC721SafeTransferFrom) { return transactionDetails.erc721BlockchainToken?.name + ' ' + transactionDetails.erc721TokenId } + + if (liveTransaction.txType === BraveWallet.TransactionType.ERC20Approve && transactionDetails.isApprovalUnlimited) { + return `${getLocale('braveWalletTransactionApproveUnlimited')} ${transactionDetails.symbol}` + } + return new Amount(transactionDetails.value) .formatAsAsset(undefined, transactionDetails.symbol) }, [transactionDetails, liveTransaction])