Merge pull request #2691 from BlueWallet/fix-2685

REF: transactions/details screen gracefull error handling (closes #2685)
This commit is contained in:
GLaDOS 2021-02-24 20:41:11 +00:00 committed by GitHub
commit e585be034f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>