diff --git a/apps/web/src/app/@modal/(.)create/page.tsx b/apps/web/src/app/@modal/(.)create/page.tsx index c4f4715..01ff1ce 100644 --- a/apps/web/src/app/@modal/(.)create/page.tsx +++ b/apps/web/src/app/@modal/(.)create/page.tsx @@ -26,6 +26,7 @@ const INITIAL_FORM_VALUES: FormValues = { minPlayers: 2, minBuyIn: 100, maxBuyIn: 1000, + maxPlayers: 9, waitingTimeout: 3600, chipUnit: ChipUnits.apt, }; diff --git a/apps/web/src/app/games/[id]/components/GameContainer.tsx b/apps/web/src/app/games/[id]/components/GameContainer.tsx index 1a23a67..a0c61f0 100644 --- a/apps/web/src/app/games/[id]/components/GameContainer.tsx +++ b/apps/web/src/app/games/[id]/components/GameContainer.tsx @@ -5,7 +5,7 @@ export default function GameContainer({ children }: PropsWithChildren) {
- {children} +
{children}
); } diff --git a/apps/web/src/app/games/[id]/components/PlayerActions.tsx b/apps/web/src/app/games/[id]/components/PlayerActions.tsx index 1975609..88c6075 100644 --- a/apps/web/src/app/games/[id]/components/PlayerActions.tsx +++ b/apps/web/src/app/games/[id]/components/PlayerActions.tsx @@ -63,7 +63,7 @@ export default function PlayerActions() { }; return ( -
+
{actions.map((action) => (
@@ -152,7 +153,7 @@ export default function Seat({ CARDS_MAP[cardName] && ( {closeButton && (