Fix missing userStatus on title cards across dashboard, recommendations, and filmography

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-05 20:24:17 -05:00
co-authored by Claude Opus 4.6
parent 61908778c9
commit 70a2a9f28d
8 changed files with 68 additions and 3 deletions
@@ -10,6 +10,7 @@ interface TitleGridItem {
posterPath: string | null;
releaseDate?: string | null;
voteAverage?: number | null;
userStatus?: "watchlist" | "in_progress" | "completed" | null;
}
export function TitleGrid({ items }: { items: TitleGridItem[] }) {
@@ -29,6 +30,7 @@ export function TitleGrid({ items }: { items: TitleGridItem[] }) {
posterPath={t.posterPath}
releaseDate={t.releaseDate}
voteAverage={t.voteAverage}
userStatus={t.userStatus}
/>
</div>
))}