diff --git a/frontend/src/components/TransactionItem.tsx b/frontend/src/components/TransactionItem.tsx index 3669e4ec..33f5fb3b 100644 --- a/frontend/src/components/TransactionItem.tsx +++ b/frontend/src/components/TransactionItem.tsx @@ -199,7 +199,7 @@ function TransactionItem({ tx }: Props) { .format("D MMMM YYYY, HH:mm")}

- {type == "outgoing" && ( + {tx.state != "failed" && type == "outgoing" && (

Fee

@@ -233,22 +233,24 @@ function TransactionItem({ tx }: Props) { {showDetails && ( <> {tx.boostagram && } -

-

Preimage

-
-

- {tx.preimage} -

- { - if (tx.preimage) { - copy(tx.preimage); - } - }} - /> + {tx.preimage && ( +
+

Preimage

+
+

+ {tx.preimage} +

+ { + if (tx.preimage) { + copy(tx.preimage); + } + }} + /> +
-
+ )}

Hash