Skip to content

Commit c67ce86

Browse files
committed
redirect to browse after onboarding
1 parent ea816d2 commit c67ce86

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

frontend/src/views/app/Onboarding.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ import Textblock from '@/components/app/onboarding/Textblock.vue';
103103
import Location from '@/components/app/onboarding/Location.vue';
104104
import SettingUp from '@/components/app/onboarding/SettingUp.vue';
105105
import Vue from 'vue';
106-
import Browse from '@/views/app/Browse.vue';
107106
108107
export default {
109108
components: {
@@ -139,7 +138,7 @@ export default {
139138
const recommendationsRequest = await this.$http.get('/recommendations');
140139
const recommendationsFromSettingUp = recommendationsRequest.data.recommendations;
141140
await this.$store.dispatch('profileCompleted');
142-
await this.$router.push({ name: Browse, params: { recommendationsFromSettingUp } });
141+
await this.$router.push({ name: 'Browse', params: { recommendationsFromSettingUp } });
143142
}
144143
if (this.slideCurrent < this.slideCount) {
145144
if (this.slideCurrent === 4 && this.userUploadedImagesCount) {

0 commit comments

Comments
 (0)