diff --git a/react/src/components/dashboard/walletsNativeReceive.js b/react/src/components/dashboard/walletsNativeReceive.js
index d23308c..dea9b93 100644
--- a/react/src/components/dashboard/walletsNativeReceive.js
+++ b/react/src/components/dashboard/walletsNativeReceive.js
@@ -25,8 +25,7 @@ class WalletsNativeReceive extends React.Component {
}
renderAddressList(type) {
- console.log(this.props.ActiveCoin.addresses[type]);
- if (this.props.ActiveCoin.addresses[type] && this.props.ActiveCoin.addresses[type].length) {
+ if (this.props.ActiveCoin.addresses && this.props.ActiveCoin.addresses[type] && this.props.ActiveCoin.addresses[type].length) {
return this.props.ActiveCoin.addresses[type].map((address) =>
diff --git a/react/src/components/dashboard/walletsNativeSend.js b/react/src/components/dashboard/walletsNativeSend.js
index 35eaf53..42b522a 100644
--- a/react/src/components/dashboard/walletsNativeSend.js
+++ b/react/src/components/dashboard/walletsNativeSend.js
@@ -22,7 +22,7 @@ class WalletsNativeSend extends React.Component {
}
renderAddressByType(type) {
- if (this.props.ActiveCoin.addresses[type] && this.props.ActiveCoin.addresses[type].length) {
+ if (this.props.ActiveCoin.addresses && this.props.ActiveCoin.addresses[type] && this.props.ActiveCoin.addresses[type].length) {
return this.props.ActiveCoin.addresses[type].map((address) =>
this.updateAddressSelection(address.address, type, address.amount)}> [ {address.amount} {this.props.ActiveCoin.coin} ] {address.address}
|