fix remaining build errors

This commit is contained in:
2026-05-01 08:30:36 +03:00
parent 8886abf589
commit 2c317fb0ec
24 changed files with 90 additions and 64 deletions
+4 -3
View File
@@ -10,6 +10,7 @@ import type {
TmdbKeyword,
TmdbReview,
TmdbVideo,
TmdbCastMember,
} from '../../api/tmdb'
import type { CinemetaMeta } from '../../api/cinemeta'
import type { TvmazeShow } from '../../api/tvmaze'
@@ -66,8 +67,8 @@ interface Props {
wikiTitle: string | null
region: string
watchProviders: TmdbWatchProviders | null | undefined
cast: unknown[]
crew: unknown[]
cast: TmdbCastMember[]
crew: TmdbCastMember[]
keywords: TmdbKeyword[]
reviews: TmdbReview[]
videos: TmdbVideo[] | undefined
@@ -76,7 +77,7 @@ interface Props {
libraryMap: Map<string, { id: string; name: string; type: string }> | undefined
overview: string
overviewSource: string | null
sources: { Id?: string }[]
sources: { Id?: string | null }[]
activeSourceId: string | null
onSourceChange: (id: string | null) => void
}