chore: remove scraper, add docs, add marketing-videos gitignore
- Remove Scripts/ directory (scraper no longer needed) - Add themed background documentation to CLAUDE.md - Add .gitignore for marketing-videos to prevent node_modules tracking Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -27,6 +27,7 @@ struct ReviewStep: View {
|
||||
var selectedTeamName: String? = nil
|
||||
var startLocationName: String? = nil
|
||||
var endLocationName: String? = nil
|
||||
var teamFirstTeamCount: Int = 0
|
||||
|
||||
var body: some View {
|
||||
VStack(alignment: .leading, spacing: Theme.Spacing.md) {
|
||||
@@ -114,6 +115,8 @@ struct ReviewStep: View {
|
||||
return startLocationName ?? "Not selected"
|
||||
case "End Location":
|
||||
return endLocationName ?? "Not selected"
|
||||
case "Teams":
|
||||
return teamFirstTeamCount >= 2 ? "\(teamFirstTeamCount) teams selected" : "Select at least 2 teams"
|
||||
default:
|
||||
return "—"
|
||||
}
|
||||
@@ -180,7 +183,9 @@ private struct ReviewRow: View {
|
||||
selectedGames: .valid,
|
||||
selectedTeam: .valid,
|
||||
startLocation: .valid,
|
||||
endLocation: .valid
|
||||
endLocation: .valid,
|
||||
teamFirstTeams: .valid,
|
||||
teamFirstTeamCount: 0
|
||||
),
|
||||
onPlan: {}
|
||||
)
|
||||
@@ -210,7 +215,9 @@ private struct ReviewRow: View {
|
||||
selectedGames: .valid,
|
||||
selectedTeam: .valid,
|
||||
startLocation: .valid,
|
||||
endLocation: .valid
|
||||
endLocation: .valid,
|
||||
teamFirstTeams: .valid,
|
||||
teamFirstTeamCount: 0
|
||||
),
|
||||
onPlan: {}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user