From 8f81a0c0c737b934e300ea584504efd0cbfd816e Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 2 Jun 2024 13:21:45 +0200 Subject: [PATCH] rm debug --- src/App.js | 2 -- 1 file changed, 2 deletions(-) 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) {