From 48dbae30d946c68e7931d2f6b000d3d5a730327e Mon Sep 17 00:00:00 2001 From: aguilhot Date: Sat, 7 Jan 2023 08:36:23 +0100 Subject: [PATCH] Clean console.log --- bob_party/src/components/GameList.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bob_party/src/components/GameList.tsx b/bob_party/src/components/GameList.tsx index 9f4a821..0768825 100644 --- a/bob_party/src/components/GameList.tsx +++ b/bob_party/src/components/GameList.tsx @@ -21,17 +21,12 @@ FC<{nav: any}> = let gameList : Game[] | undefined; if(MANAGER_GAME.currentGameType === "solo" ){ - console.log("solo"); gameList = MANAGER_GAME.getTabGameSolo(); console.log(gameList); } else if(MANAGER_GAME.currentGameType === "multi"){ - console.log("multi"); gameList = MANAGER_GAME.getTabGameMulti(); } - else{ - console.log("crotte"); - } return(