File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed
Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,7 @@ export default {
4949 if (this .recommendationsFromSettingUp ) {
5050 this .recommendations = this .recommendationsFromSettingUp ;
5151 } else {
52- const recommendationsRequest = await this .$http .get (' /recommendations' , {
53- data: {
54- force: false ,
55- },
56- });
52+ const recommendationsRequest = await this .$http .get (' /recommendations' );
5753 this .recommendations = recommendationsRequest .data .recommendations ;
5854 }
5955 this .recommendations .sort ((a , b ) => a .distance - b .distance );
Original file line number Diff line number Diff line change @@ -136,11 +136,7 @@ export default {
136136 this .slideCurrent += 1 ;
137137 await this .bus .$emit (' send-user-location-to-backend' );
138138 await this .$http .post (' /profile/complete' , this .userData );
139- const recommendationsRequest = await this .$http .get (' /recommendations' , {
140- data: {
141- force: false ,
142- },
143- });
139+ const recommendationsRequest = await this .$http .get (' /recommendations' );
144140 const recommendationsFromSettingUp = recommendationsRequest .data .recommendations ;
145141 await this .$store .dispatch (' profileCompleted' );
146142 await this .$router .push ({ name: Browse, params: { recommendationsFromSettingUp } });
You can’t perform that action at this time.
0 commit comments