Skip to content

Commit

Permalink
build: 💚 Array deploy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
skyrunner360 committed Apr 14, 2024
1 parent 93c4437 commit 3be6fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Board.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Board = () => {
const arr = Array.from({ length: 100 }, (_, i) => i + 1);
const newArr = [];
while (arr.length) newArr.push(arr.splice(0, 10));
return newArr;
return newArr.reverse();
}, []);

const playerPos = useRecoilValue(playerPositions);
Expand Down

0 comments on commit 3be6fff

Please sign in to comment.