From 4e542068d2d99f397338e43cb3ad818126487f8f Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 23 Nov 2023 07:53:05 +0100 Subject: [PATCH] Removed a debug statement from the Calculate.jsx --- client/src/pages/Game/states/Calculate/Calculate.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/src/pages/Game/states/Calculate/Calculate.jsx b/client/src/pages/Game/states/Calculate/Calculate.jsx index 1f7e214..92a14d5 100644 --- a/client/src/pages/Game/states/Calculate/Calculate.jsx +++ b/client/src/pages/Game/states/Calculate/Calculate.jsx @@ -43,8 +43,6 @@ export const Calculate = ({setState, currentRound}) => { let currentRound = {...current, profit, name: getGroupById(current.id).name, sold, newCapital: getGroupById(current.id).capital + profit}; - console.log(currentRound); - setAnimatedGroups(old => [...old, currentRound]); updateCapital(current.id, currentRound.newCapital);