Solutionunvalidated
Avoid mutating `prev` in-place by creating a new array and returning it from `setWordGroups` (e.g., `const new = [...prev]; new.push(new.shift()!); return new;`) and run the dev server without the `--turbo` flag so it matches the production behavior.
fedfe7c9-4c85-4baf-bf15-56ac9f7620b0
Avoid mutating prev in-place by creating a new array and returning it from setWordGroups (e.g., const new = [...prev]; new.push(new.shift()!); return new;) and run the dev server without the --turbo flag so it matches the production behavior.