From d5bb3f016e66bdbdcfc23258f442ab37a68ceea1 Mon Sep 17 00:00:00 2001 From: Ra Date: Thu, 19 Oct 2023 17:22:57 +0200 Subject: [PATCH] clean console.log --- client/src/App.js | 2 +- client/src/Pages/Home/Home.js | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/client/src/App.js b/client/src/App.js index f1f34220..d56f9eae 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -269,7 +269,7 @@ function App() { reset(); return () => ref.current.forEach(clearTimeout); }, [isUserLogged]); - console.log("re rendu"); + // console.log("re rendu"); const [crossmintPayloadLocationdata, setCrossmintPayloadLocationdata] = useState(null); return ( diff --git a/client/src/Pages/Home/Home.js b/client/src/Pages/Home/Home.js index db31d771..80e37a1b 100644 --- a/client/src/Pages/Home/Home.js +++ b/client/src/Pages/Home/Home.js @@ -240,13 +240,13 @@ function Home({ let judgement; if (isUserFan === false && dataPost[i]?.visibility === false) { - console.log("pas fan et post privé"); + // console.log("pas fan et post privé"); judgement = true; } else if (isUserFan === true && dataPost[i]?.visibility === false) { - console.log("Fan et post privé"); + // console.log("Fan et post privé"); judgement = false; } else if (dataPost[i]?.visibility === true) { - console.log("post public"); + // console.log("post public"); judgement = false; } @@ -255,7 +255,7 @@ function Home({ // console.log(tempIsUserFanArray); setIsUserFanArray(tempIsUserFanArray); }; -console.log("appel de la fontion feedDataFrom") +// console.log("appel de la fontion feedDataFrom") feedDataFromAlchemyAndFirebase(); // if (loggedInUser.metamask) { @@ -359,8 +359,8 @@ console.log("appel de la fontion feedDataFrom") e.currentTarget.id === dataPost[i].id && dataPost[i].isDropdownClicked === false ) { - console.log(e.currentTarget.id); - console.log(dataPost[i].id); + // console.log(e.currentTarget.id); + // console.log(dataPost[i].id); const newData = [...dataPost]; newData[i].isDropdownClicked = true; setPostData(newData); @@ -402,7 +402,7 @@ console.log("appel de la fontion feedDataFrom") // console.log(isLogged) function handleClickCopyPostLink(postId) { navigator.clipboard.writeText(`https://staging.sofan.app/post/${postId}`); - console.log(postId); + // console.log(postId); setIsCopyPostLinkClicked(true); // const timeOutAnimationCopyClicked = setTimeout(() => { @@ -466,7 +466,7 @@ console.log("appel de la fontion feedDataFrom") contractAddresses: arraySofanCollection, } ); - console.log("nftsFromOwner --> ", nftsFromOwner); + // console.log("nftsFromOwner --> ", nftsFromOwner); let athletesSupportingArray = []; for (let i = 0; i < nftsFromOwner.ownedNfts.length; i++) { const elementFromAlchemy = nftsFromOwner.ownedNfts[i];