From 822890a461c614c8972142d9a726482592c923ca Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 10:54:24 +0000 Subject: [PATCH] Extend number line and n option Extend the number line in `src/components/PebblePlacementGame.tsx` to 100 and add an option for n=6. --- src/components/PebblePlacementGame.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/PebblePlacementGame.tsx b/src/components/PebblePlacementGame.tsx index 2d76220..ebb3fbc 100644 --- a/src/components/PebblePlacementGame.tsx +++ b/src/components/PebblePlacementGame.tsx @@ -127,7 +127,7 @@ const PebblePlacementGame: React.FC = ({ showSocialSha value={[numPebbles]} onValueChange={(value) => setNumPebbles(value[0])} min={2} - max={5} + max={6} step={1} className="w-full max-w-xs" disabled={gameStarted} @@ -172,11 +172,11 @@ const PebblePlacementGame: React.FC = ({ showSocialSha {/* Game Board */} {gameStarted && (
-

Positions 1-35

+

Positions 1-100

{/* All positions in a flowing line */}
- {Array.from({ length: 35 }, (_, i) => { + {Array.from({ length: 100 }, (_, i) => { const position = i + 1; return (