fix(14-1): remove '0' ball button from end-of-turn grid

- The '0' button is no longer shown in the 'Bälle am Ende der Aufnahme' grid
- Only buttons for 1–15 balls are now available, matching real game scenarios

Refs #26
This commit is contained in:
Frank Schwenk
2025-06-24 10:40:28 +02:00
parent ed552b3fbe
commit b8bc3f8a5c

View File

@@ -183,7 +183,7 @@ const GameDetail141 = ({ game, onUpdate, onUndo, onForfeit, onBack }) => {
<div className={styles['potted-balls-container']}>
<p className={styles['potted-balls-header']}>Bälle am Ende der Aufnahme:</p>
<div className={styles['potted-balls-grid']}>
{Array.from({ length: 16 }, (_, i) => i).map(num => (
{Array.from({ length: 15 }, (_, i) => i + 1).map(num => (
<button
key={num}
onClick={() => handleTurnEnd(num)}