From 083334ed18bd5af7ff71a49d9f6b68aa950f6699 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Sat, 25 Jul 2020 18:23:55 +0200 Subject: [PATCH] Don't redirect to dashboard after connecting web3 account --- app/components/topbar-account-panel/component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/topbar-account-panel/component.js b/app/components/topbar-account-panel/component.js index d7ae8a4..b4ad5dd 100644 --- a/app/components/topbar-account-panel/component.js +++ b/app/components/topbar-account-panel/component.js @@ -34,7 +34,7 @@ export default Component.extend({ this.set('setupInProgress', true); await this.kredits.setup(); this.set('setupInProgress', false); - this.router.transitionTo('dashboard'); + // this.router.transitionTo('dashboard'); } catch (error) { this.set('setupInProgress', false); console.log('Opening Ethereum wallet failed:', error);