File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
components/app/onboarding Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export default {
5555 },
5656 },
5757 mounted () {
58- this .bus .$on (' sendUserLocationToBackend ' , this .sendLocation );
58+ this .bus .$on (' send-user-location-to-backend ' , this .sendLocation );
5959 },
6060};
6161 </script >
Original file line number Diff line number Diff line change 9595
9696<script >
9797/* eslint-disable prefer-const */
98- /* eslint-disable vue/custom-event-name-casing */
9998import Introduction from ' @/components/app/onboarding/Introduction.vue' ;
10099import SingleChoice from ' @/components/app/onboarding/SingleChoice.vue' ;
101100import MultipleChoice from ' @/components/app/onboarding/MultipleChoice.vue' ;
@@ -135,7 +134,7 @@ export default {
135134 async nextSlide () {
136135 if (this .slideCurrent === this .slideCount ) {
137136 this .slideCurrent += 1 ;
138- await this .bus .$emit (' sendUserLocationToBackend ' );
137+ await this .bus .$emit (' send-user-location-to-backend ' );
139138 await this .$http .post (' /profile/complete' , this .userData );
140139 const recommendationsRequest = await this .$http .get (' /recommendations' );
141140 const recommendationsFromSettingUp = recommendationsRequest .data .recommendations ;
You can’t perform that action at this time.
0 commit comments