diff --git a/src/screens/application/container/applicationContainer.js b/src/screens/application/container/applicationContainer.js index a48448791..7ae2c90f5 100644 --- a/src/screens/application/container/applicationContainer.js +++ b/src/screens/application/container/applicationContainer.js @@ -562,7 +562,9 @@ class ApplicationContainer extends Component { }; _switchAccount = async targetAccountUsername => { - const { dispatch } = this.props; + const { dispatch, isConnected } = this.props; + + if (!isConnected) return; const accountData = await switchAccount(targetAccountUsername);