Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
waldoosg committed Oct 29, 2024
1 parent 61bf759 commit 95c1938
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/workers-functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ async function Recommendations(data) {
async function getHistory(id) {
const response = await axios.get(`https://nodecraft.me/recommendations/${id}/history`);
const filteredData = response.data.filter(item => item.response != {});
console.log(filteredData);
return filteredData;
}

Expand All @@ -39,12 +38,6 @@ async function madeRecommendations(id) {
return result;
}


//console.log(await Recommendations(fixtures));



export {
getHistory,
madeRecommendations
};

0 comments on commit 95c1938

Please sign in to comment.