summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-14 22:22:13 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-14 22:22:13 +0100
commit808ad2c794bf15321d575eca5dd492d485e20ae7 (patch)
tree88e4b8e12fee75fb087896e6f37620982783d0d7
parentDisable Miner on Windows (diff)
downloadferdium-app-808ad2c794bf15321d575eca5dd492d485e20ae7.tar.gz
ferdium-app-808ad2c794bf15321d575eca5dd492d485e20ae7.tar.zst
ferdium-app-808ad2c794bf15321d575eca5dd492d485e20ae7.zip
Fix auth route debugging
-rw-r--r--src/stores/UserStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/UserStore.js b/src/stores/UserStore.js
index 63311065a..1cb2ecac3 100644
--- a/src/stores/UserStore.js
+++ b/src/stores/UserStore.js
@@ -231,7 +231,7 @@ export default class UserStore extends Store {
231 && currentRoute.includes(this.BASE_ROUTE) 231 && currentRoute.includes(this.BASE_ROUTE)
232 && (this.hasCompletedSignup 232 && (this.hasCompletedSignup
233 || this.hasCompletedSignup === null)) { 233 || this.hasCompletedSignup === null)) {
234 // this.stores.router.push('/'); 234 this.stores.router.push('/');
235 } 235 }
236 }; 236 };
237 237