From 6e55de9a3bdaa63fac8388ff8b4199cd01edddcf Mon Sep 17 00:00:00 2001 From: vantezzen Date: Wed, 21 Aug 2019 14:08:47 +0200 Subject: Remove redirection to pricing page after signup --- src/stores/UserStore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stores/UserStore.js') diff --git a/src/stores/UserStore.js b/src/stores/UserStore.js index 9e7951637..104416f06 100644 --- a/src/stores/UserStore.js +++ b/src/stores/UserStore.js @@ -176,11 +176,11 @@ export default class UserStore extends Store { locale: this.stores.app.locale, }); - this.hasCompletedSignup = false; + this.hasCompletedSignup = true; this._setUserData(authToken); - this.stores.router.push(this.PRICING_ROUTE); + this.stores.router.push('/'); } @action async _retrievePassword({ email }) { -- cgit v1.2.3-54-g00ecf