diff --git a/src/App.js b/src/App.js index 38986ff..3d49b4a 100644 --- a/src/App.js +++ b/src/App.js @@ -44,8 +44,6 @@ function UseVoteLocalStorage() { const vote = (id, up) => { const newVotes = [...storageVotes]; - console.log("new", newVotes); - const existingVoteIndex = newVotes.findIndex((vote) => vote.id === id); if (existingVoteIndex !== -1) {