Skip to content

Commit

Permalink
fix(wallet): Solana Dropped Transaction Panel (uplift to 1.74.x) (#26859
Browse files Browse the repository at this point in the history
)

Uplift of #26747 (squashed) to beta
  • Loading branch information
brave-builds authored Dec 5, 2024
1 parent 6c61517 commit cfd0663
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,10 @@ export function TransactionStatus({ transactionLookup }: Props) {
)
}

if (tx.txStatus === BraveWallet.TransactionStatus.Error) {
if (
tx.txStatus === BraveWallet.TransactionStatus.Error ||
tx.txStatus === BraveWallet.TransactionStatus.Dropped
) {
return (
<TransactionFailedOrCanceled
transaction={tx}
Expand Down

0 comments on commit cfd0663

Please sign in to comment.