Skip to content

Commit a0f636b

Browse files
committed
no more button onboarding
1 parent ffd1db5 commit a0f636b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

frontend/src/components/app/onboarding/MainAndSecondaryImagesUpload.vue

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ export default {
5656
} else {
5757
await this.$http.post('/profile/images?is_primary=false', formData);
5858
}
59-
} catch (error) {
60-
console.log(error);
61-
}
59+
} catch (error) {}
6260
}
6361
},
6462
},
@@ -73,7 +71,10 @@ export default {
7371
if (this.imagesUploaded.length === this.imageIndex) {
7472
return 'Continue';
7573
}
76-
return 'Skip';
74+
if (this.imageIndex === 1) {
75+
return 'Skip';
76+
}
77+
return 'No more';
7778
},
7879
},
7980
};

0 commit comments

Comments
 (0)