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 }) { /> ); })} - - - ); }