From 7a1453d8d43642835bb546cbfe734c297c3ae6eb Mon Sep 17 00:00:00 2001 From: shay <43248357+shayypy@users.noreply.github.com> Date: Tue, 17 Jun 2025 10:24:36 -0500 Subject: [PATCH] fix: imdb_id is nullable --- src/types/movies.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/movies.ts b/src/types/movies.ts index 4b8868e..f1b8cbe 100644 --- a/src/types/movies.ts +++ b/src/types/movies.ts @@ -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;