This commit is contained in:
2025-12-09 23:00:51 +01:00
parent 3659d25e52
commit 8fd8999e9e
4 changed files with 33 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ import CreateLeagueWizard from '@/components/leagues/CreateLeagueWizard';
import Section from '@/components/ui/Section';
import Container from '@/components/ui/Container';
type StepName = 'basics' | 'visibility' | 'structure' | 'schedule' | 'scoring' | 'review';
type StepName = 'basics' | 'visibility' | 'structure' | 'schedule' | 'scoring' | 'stewarding' | 'review';
function normalizeStepName(raw: string | null): StepName {
switch (raw) {
@@ -14,6 +14,7 @@ function normalizeStepName(raw: string | null): StepName {
case 'structure':
case 'schedule':
case 'scoring':
case 'stewarding':
case 'review':
return raw;
default: