Add simulatorType to SeasonWithSportsSeasons sport type
All checks were successful
🚀 Deploy / 🧪 Test (pull_request) Successful in 3m19s
🚀 Deploy / ʦ🔍 Typecheck & Lint (pull_request) Successful in 1m20s
🚀 Deploy / 🐳 Build (pull_request) Has been skipped
🚀 Deploy / 🚀 Deploy (pull_request) Has been skipped

The query already fetches sport: true (all columns) so simulatorType was
present at runtime, but the manual interface narrowed it away causing a
typecheck failure in home.tsx and upcoming-events.tsx.

https://claude.ai/code/session_01SFmJQxQZsKxvJ5rhbYk3za
This commit is contained in:
Claude 2026-06-15 21:51:52 +00:00
parent 40fc541329
commit e1caae9157
No known key found for this signature in database

View file

@ -26,6 +26,7 @@ export interface SeasonWithSportsSeasons extends Season {
type: string;
slug: string;
iconUrl: string | null;
simulatorType: string | null;
};
};
}>;