From 984acda7043aeb08a42f5d088e2e568e15d4d057 Mon Sep 17 00:00:00 2001 From: djmil Date: Fri, 27 Oct 2023 14:02:01 +0200 Subject: [PATCH] front: compilation warning --- webapp/src/components/Game/GameSelector.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/webapp/src/components/Game/GameSelector.jsx b/webapp/src/components/Game/GameSelector.jsx index f9f60b4..944a75a 100644 --- a/webapp/src/components/Game/GameSelector.jsx +++ b/webapp/src/components/Game/GameSelector.jsx @@ -21,13 +21,13 @@ export default function GameSelector() { dispatchCtx({ component: "game-selector", selectedGameProposal: selectedGame }) } - const onClick_active = (selectedGame) => { - dispatchCtx({ component: "game-selector", selectedActiveGame: selectedGame }) - } + // const onClick_active = (selectedGame) => { + // dispatchCtx({ component: "game-selector", selectedActiveGame: selectedGame }) + // } - const onClick_archive = (selectedGame) => { - dispatchCtx({ component: "game-selector", selectedArchiveGame: selectedGame }) - } + // const onClick_archive = (selectedGame) => { + // dispatchCtx({ component: "game-selector", selectedArchiveGame: selectedGame }) + // } if (!data.games) return
Loading..