diff --git a/aether-core/aether/client/src/app/components/locations/onboardscope/onboard6.vue b/aether-core/aether/client/src/app/components/locations/onboardscope/onboard6.vue index 07654b2..860d5b5 100644 --- a/aether-core/aether/client/src/app/components/locations/onboardscope/onboard6.vue +++ b/aether-core/aether/client/src/app/components/locations/onboardscope/onboard6.vue @@ -30,12 +30,14 @@ export default { }, methods: { toNewUser(this: any) { - this.$router.push('/newuser') - fe.SetOnboardComplete(true, function() {}) + fe.SetOnboardComplete(true, () => { + this.$router.push('/newuser') + }) }, toApp(this: any) { - this.$router.push('/popular') - fe.SetOnboardComplete(true, function() {}) + fe.SetOnboardComplete(true, () => { + this.$router.push('/popular') + }) }, }, }