We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffd1db5 commit a0f636bCopy full SHA for a0f636b
frontend/src/components/app/onboarding/MainAndSecondaryImagesUpload.vue
@@ -56,9 +56,7 @@ export default {
56
} else {
57
await this.$http.post('/profile/images?is_primary=false', formData);
58
}
59
- } catch (error) {
60
- console.log(error);
61
- }
+ } catch (error) {}
62
63
},
64
@@ -73,7 +71,10 @@ export default {
73
71
if (this.imagesUploaded.length === this.imageIndex) {
74
72
return 'Continue';
75
76
- return 'Skip';
+ if (this.imageIndex === 1) {
+ return 'Skip';
+ }
77
+ return 'No more';
78
79
80
};
0 commit comments