Skip to content

Commit 1f35f11

Browse files
committed
Revert "skeleton for recommendations metadata"
This reverts commit 0a5e9ed.
1 parent 3009d99 commit 1f35f11

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

frontend/src/views/app/Browse.vue

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,6 @@ export default {
2222
},
2323
data: () => ({
2424
recommendations: [],
25-
recommendationsAnalysis: {
26-
age: {
27-
min: null,
28-
max: null,
29-
},
30-
distance: {
31-
min: null,
32-
max: null,
33-
},
34-
fame: {
35-
min: null,
36-
max: null,
37-
},
38-
interests: [],
39-
},
4025
}),
4126
async created() {
4227
if (this.recommendationsFromSettingUp) {
@@ -45,9 +30,6 @@ export default {
4530
const recommendationsRequest = await this.$http.get('/recommendations');
4631
this.recommendations = recommendationsRequest.data.recommendations;
4732
}
48-
for (let i = 0; i < this.recommendations.length; i += 1) {
49-
console.log(this.recommendations[i]);
50-
}
5133
},
5234
};
5335

0 commit comments

Comments
 (0)