We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3009d99 commit 1f35f11Copy full SHA for 1f35f11
frontend/src/views/app/Browse.vue
@@ -22,21 +22,6 @@ export default {
22
},
23
data: () => ({
24
recommendations: [],
25
- recommendationsAnalysis: {
26
- age: {
27
- min: null,
28
- max: null,
29
- },
30
- distance: {
31
32
33
34
- fame: {
35
36
37
38
- interests: [],
39
40
}),
41
async created() {
42
if (this.recommendationsFromSettingUp) {
@@ -45,9 +30,6 @@ export default {
45
const recommendationsRequest = await this.$http.get('/recommendations');
46
this.recommendations = recommendationsRequest.data.recommendations;
47
}
48
- for (let i = 0; i < this.recommendations.length; i += 1) {
49
- console.log(this.recommendations[i]);
50
- }
51
52
};
53
0 commit comments