From 4fc43cc4291b4ab9f7c4acac73e367f809d6cc3a Mon Sep 17 00:00:00 2001 From: NigeParis Date: Sat, 3 Jan 2026 16:27:47 +0100 Subject: [PATCH] dis-activated ttt.ts line 98 - does not exist --- frontend/src/pages/ttt/ttt.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/ttt/ttt.ts b/frontend/src/pages/ttt/ttt.ts index 360bf2c..4e068e2 100644 --- a/frontend/src/pages/ttt/ttt.ts +++ b/frontend/src/pages/ttt/ttt.ts @@ -51,7 +51,7 @@ async function handleTTT(): Promise { socket.emit('enqueue'); const cells = app.querySelectorAll(".ttt-cell"); - const grid = app.querySelector(".ttt-grid"); // Not sure about this one + // const grid = app.querySelector(".ttt-grid"); // Not sure about this one const updateUI = (boardState: (string | null)[]) => { boardState.forEach((state, idx) => { @@ -95,7 +95,7 @@ async function handleTTT(): Promise { updateUI(u.boardState); if (u.gameState && u.gameState !== "ongoing") { - grid?.classList.add("pointer-events-none"); + // grid?.classList.add("pointer-events-none"); if (u.gameState !== curGame.lastState) { curGame.lastState = u.gameState;