diff --git a/public/index.html b/public/index.html index 85c2b36..9be7418 100644 --- a/public/index.html +++ b/public/index.html @@ -37,7 +37,6 @@ ws.onmessage = (event) => { const log = JSON.parse(event.data); - // Assuming log contains nodeId to identify which node to light up const nodeId = log.nodeId; if (nodeId >= 0 && nodeId < 50) { nodes[nodeId].style.backgroundColor = 'green';