diff --git a/src/js/views/Wallet/components/LeftNavigation/index.js b/src/js/views/Wallet/components/LeftNavigation/index.js index 7cfec80c..9327c554 100644 --- a/src/js/views/Wallet/components/LeftNavigation/index.js +++ b/src/js/views/Wallet/components/LeftNavigation/index.js @@ -81,8 +81,9 @@ class LeftNavigation extends Component { } shouldRenderAccounts() { + const { network } = this.props.location; const { selectedDevice } = this.props.wallet; - return selectedDevice && !this.state.shouldRenderDeviceSelection && this.state.animationType === 'slide-left'; + return selectedDevice && network && !this.state.shouldRenderDeviceSelection && this.state.animationType === 'slide-left'; } shouldRenderCoins() { @@ -98,8 +99,8 @@ class LeftNavigation extends Component { {this.state.shouldRenderDeviceSelection && this.getMenuTransition() } - {/* {this.shouldRenderAccounts && this.getMenuTransition()} */} - {this.shouldRenderCoins && } + {this.shouldRenderAccounts() && this.getMenuTransition()} + {this.shouldRenderCoins() && }