mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-27 10:54:21 +01:00
Fix activity items with no fees
This commit is contained in:
committed by
Tony Giorgio
parent
73c108ed1a
commit
8fca28df96
@@ -197,7 +197,7 @@ function LightningDetails(props: { info: MutinyInvoice; tags?: TagItem }) {
|
||||
<ul class="flex flex-col gap-4">
|
||||
<KeyValue key={i18n.t("activity.transaction_details.fee")}>
|
||||
<ActivityAmount
|
||||
amount={props.info.fees_paid!.toString()}
|
||||
amount={props.info.fees_paid?.toString() || "0"}
|
||||
price={state.price}
|
||||
/>
|
||||
</KeyValue>
|
||||
|
||||
Reference in New Issue
Block a user