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

@@ -13,7 +13,7 @@ import { LeagueName } from '@gridpilot/racing/domain/value-objects/LeagueName';
import { LeagueDescription } from '@gridpilot/racing/domain/value-objects/LeagueDescription';
import { GameConstraints } from '@gridpilot/racing/domain/value-objects/GameConstraints';
export type WizardStep = 1 | 2 | 3 | 4 | 5 | 6;
export type WizardStep = 1 | 2 | 3 | 4 | 5 | 6 | 7;
export interface WizardErrors {
basics?: {
@@ -153,7 +153,9 @@ export function validateLeagueWizardStep(
}
}
// Step 6: Review - no validation needed, it's just review
// Step 6: Stewarding - no validation needed currently (all fields have defaults)
// Step 7: Review - no validation needed, it's just review
return errors;
}