diff --git a/src/components/board/BoardView.tsx b/src/components/board/BoardView.tsx index 922ef91..5e2ebc2 100644 --- a/src/components/board/BoardView.tsx +++ b/src/components/board/BoardView.tsx @@ -39,18 +39,7 @@ const BoardView: FunctionComponent<{ boardViewModel.pits[game.board.player2BankIndex()]; const isPlayer2 = userKey === game?.player2Id; return ( -
+
{isPlayer2 ? player1Pits?.reverse() : player2Pits?.reverse()} {isPlayer2 ? player2Pits : player1Pits} +
); };