diff --git a/src/stores/UserStore.js b/src/stores/UserStore.js index 09000dcdb..3a43668a7 100644 --- a/src/stores/UserStore.js +++ b/src/stores/UserStore.js @@ -237,7 +237,9 @@ export default class UserStore extends Store { && currentRoute.includes(this.BASE_ROUTE) && (this.hasCompletedSignup || this.hasCompletedSignup === null)) { - this.stores.router.push('/'); + if (!isDevMode) { + this.stores.router.push('/'); + } } };