diff --git a/Sources/BraveWallet/Crypto/Transactions/TransactionSummaryViews.swift b/Sources/BraveWallet/Crypto/Transactions/TransactionSummaryViews.swift index 52cd7940225..966ed3cc78e 100644 --- a/Sources/BraveWallet/Crypto/Transactions/TransactionSummaryViews.swift +++ b/Sources/BraveWallet/Crypto/Transactions/TransactionSummaryViews.swift @@ -84,7 +84,15 @@ struct TransactionSummaryViewContainer: View { time: parsedTransaction.transaction.createdTime ) case .other: - EmptyView() + SendTransactionSummaryView( + sentFromAccountName: parsedTransaction.namedFromAddress, + token: nil, + network: parsedTransaction.network, + valueSent: nil, + fiatValueSent: nil, + status: parsedTransaction.transaction.txStatus, + time: parsedTransaction.transaction.createdTime + ) } } }