From 86bf2eb1d353a65a5c1c70b5bfd87930ae66e1cc Mon Sep 17 00:00:00 2001 From: thibaud-leclere Date: Mon, 30 Mar 2026 21:33:40 +0200 Subject: [PATCH] feat: move hints column to the left of the game grid Co-Authored-By: Claude Opus 4.6 (1M context) --- assets/react/controllers/GameRow.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/react/controllers/GameRow.jsx b/assets/react/controllers/GameRow.jsx index 463780a..6caa8e0 100644 --- a/assets/react/controllers/GameRow.jsx +++ b/assets/react/controllers/GameRow.jsx @@ -17,6 +17,9 @@ export default function GameRow({ actorName, pos, colStart, totalWidth }) { return ( + + + {Array.from({ length: totalWidth + 1 }, (_, colIndex) => { const charIndex = colIndex - colStart; const isInRange = charIndex >= 0 && charIndex < letters.length; @@ -35,9 +38,6 @@ export default function GameRow({ actorName, pos, colStart, totalWidth }) { /> ); })} - - - ); }