From 95c19384d865fe21f19c326c4575bba7321c6110 Mon Sep 17 00:00:00 2001 From: waldoosg Date: Tue, 29 Oct 2024 05:37:50 -0300 Subject: [PATCH] 3 --- src/workers-functions.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/workers-functions.js b/src/workers-functions.js index 962e23e..9966345 100644 --- a/src/workers-functions.js +++ b/src/workers-functions.js @@ -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; } @@ -39,12 +38,6 @@ async function madeRecommendations(id) { return result; } - -//console.log(await Recommendations(fixtures)); - - - export { - getHistory, madeRecommendations }; \ No newline at end of file