mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-03 12:06:21 +01:00
Merge pull request #2691 from BlueWallet/fix-2685
REF: transactions/details screen gracefull error handling (closes #2685)
This commit is contained in:
commit
e585be034f
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ const TransactionsDetails = () => {
|
|||
</>
|
||||
)}
|
||||
|
||||
{tx.outputs.length > 0 && (
|
||||
{tx.outputs?.length > 0 && (
|
||||
<>
|
||||
<BlueText style={[styles.rowCaption, stylesHooks.rowCaption]}>{loc.transactions.details_outputs}</BlueText>
|
||||
<BlueText style={styles.rowValue}>{tx.outputs.length}</BlueText>
|
||||
|
|
Loading…
Add table
Reference in a new issue