From e1caae9157059f352f16d48a1e88331dd4f77cc0 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 15 Jun 2026 21:51:52 +0000 Subject: [PATCH] Add simulatorType to SeasonWithSportsSeasons sport type 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 --- app/models/season.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/models/season.ts b/app/models/season.ts index d573f48..e969a00 100644 --- a/app/models/season.ts +++ b/app/models/season.ts @@ -26,6 +26,7 @@ export interface SeasonWithSportsSeasons extends Season { type: string; slug: string; iconUrl: string | null; + simulatorType: string | null; }; }; }>;