diff --git a/ios/BlueWallet/Info.plist b/ios/BlueWallet/Info.plist
index 98de2dfd2..53f7b135e 100644
--- a/ios/BlueWallet/Info.plist
+++ b/ios/BlueWallet/Info.plist
@@ -33,7 +33,7 @@
CFBundleVersion
- 215
+ 216
ITSAppUsesNonExemptEncryption
LSRequiresIPhoneOS
diff --git a/screen/lnd/scanLndInvoice.js b/screen/lnd/scanLndInvoice.js
index 806a3ca99..ea931b460 100644
--- a/screen/lnd/scanLndInvoice.js
+++ b/screen/lnd/scanLndInvoice.js
@@ -109,7 +109,6 @@ export default class ScanLndInvoice extends React.Component {
isAmountInitiallyEmpty: decoded.num_satoshis === '0',
});
} catch (Err) {
- this.setState({ destination: '' });
alert(Err.message);
}
}
diff --git a/screen/send/details.js b/screen/send/details.js
index c14149aa9..2f2b341c7 100644
--- a/screen/send/details.js
+++ b/screen/send/details.js
@@ -229,7 +229,7 @@ export default class SendDetails extends Component {
})
.catch(error => {
alert(error.errorMessage);
- this.setState({ address: text.replace(' ', ''), isLoading: false, bip70TransactionExpiration: null, amount: 0 });
+ this.setState({ isLoading: false, bip70TransactionExpiration: null });
});
},
);