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) {