From 738ffd1ceecf900a93d5f2e281249705a596b719 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Mon, 30 Sep 2024 16:13:57 +0200 Subject: [PATCH] removing unecessary console.logs --- src/services/WordpressFetchData.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/services/WordpressFetchData.js b/src/services/WordpressFetchData.js index 794baed..41ef228 100644 --- a/src/services/WordpressFetchData.js +++ b/src/services/WordpressFetchData.js @@ -49,9 +49,7 @@ const postGameStatisticsData = async (requestDatas) => { }; axios.request(options) - .then((response) => { - console.log(response.data); - }) + .then((response) => {}) .catch((error) => { console.error(error); });