mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
FIX: unpaid ln invoices were rendered as paid
This commit is contained in:
parent
5e2e0b58c2
commit
750308725e
@ -164,6 +164,11 @@ export const TransactionListItem: React.FC<TransactionListItemProps> = React.mem
|
||||
label: loc.transactions.expired_transaction,
|
||||
icon: <TransactionExpiredIcon />,
|
||||
};
|
||||
} else if (!item.ispaid) {
|
||||
return {
|
||||
label: loc.transactions.expired_transaction,
|
||||
icon: <TransactionPendingIcon />,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
label: loc.transactions.incoming_transaction,
|
||||
|
Loading…
Reference in New Issue
Block a user