diff --git a/src/pages/cl/gs/index.tsx b/src/pages/cl/gs/index.tsx index 0b4a4594..4d3d0390 100644 --- a/src/pages/cl/gs/index.tsx +++ b/src/pages/cl/gs/index.tsx @@ -226,10 +226,7 @@ function CLGS({ season, pots: initialPots, isFirstPotShortDraw }: Props) { useEffect(() => { if (isNoGroupBallPick && possibleGroupsShuffled?.length) { - const index = isDrawShort - ? Math.min(...possibleGroupsShuffled) - : sample(possibleGroupsShuffled)! - + const index = sample(possibleGroupsShuffled)! handleGroupBallPick(index) } }, [isNoGroupBallPick, possibleGroupsShuffled])