fix: imdb_id is nullable

This commit is contained in:
shay
2025-06-17 10:24:36 -05:00
parent da5abe276a
commit 7a1453d8d4

View File

@@ -22,7 +22,7 @@ export interface MovieDetails {
genres: Genre[];
homepage: string;
id: number;
imdb_id: string;
imdb_id: string | null;
original_language: string;
original_title: string;
overview: string;
@@ -104,7 +104,7 @@ export interface LatestMovie {
genres: Genre[];
homepage: string;
id: number;
imdb_id: string;
imdb_id: string | null;
original_language: string;
original_title: string;
overview: string;