aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/UserStore.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-08-21 14:08:47 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-08-21 14:08:47 +0200
commit6e55de9a3bdaa63fac8388ff8b4199cd01edddcf (patch)
tree2df5ac5e43e13c100d7fc9fa8c3dc4f724a553a7 /src/stores/UserStore.js
parentMake all users premium (diff)
downloadferdium-app-6e55de9a3bdaa63fac8388ff8b4199cd01edddcf.tar.gz
ferdium-app-6e55de9a3bdaa63fac8388ff8b4199cd01edddcf.tar.zst
ferdium-app-6e55de9a3bdaa63fac8388ff8b4199cd01edddcf.zip
Remove redirection to pricing page after signup
Diffstat (limited to 'src/stores/UserStore.js')
-rw-r--r--src/stores/UserStore.js4
1 files changed, 2 insertions, 2 deletions
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 {
176 locale: this.stores.app.locale, 176 locale: this.stores.app.locale,
177 }); 177 });
178 178
179 this.hasCompletedSignup = false; 179 this.hasCompletedSignup = true;
180 180
181 this._setUserData(authToken); 181 this._setUserData(authToken);
182 182
183 this.stores.router.push(this.PRICING_ROUTE); 183 this.stores.router.push('/');
184 } 184 }
185 185
186 @action async _retrievePassword({ email }) { 186 @action async _retrievePassword({ email }) {