From 02e9aef9f29bac0c3844d313cd1d46fd5d69ec1c Mon Sep 17 00:00:00 2001 From: CK <86251706+altCK129@users.noreply.github.com> Date: Thu, 5 Mar 2026 13:47:47 +0530 Subject: [PATCH] Update AppleTVHero.tsx 2 --- src/components/home/AppleTVHero.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/home/AppleTVHero.tsx b/src/components/home/AppleTVHero.tsx index 18a1e0a12..578c93623 100644 --- a/src/components/home/AppleTVHero.tsx +++ b/src/components/home/AppleTVHero.tsx @@ -460,7 +460,7 @@ const AppleTVHero: React.FC = ({ // Fetch video list from TMDB to get the YouTube video ID const tmdbApiKey = await TMDBService.getInstance().getApiKey(); const videosRes = await fetch( - `https://api.themoviedb.org/3/${contentType}/${tmdbId}/videos?api_key=${tmdbApiKey}&language=en-US` + `https://api.themoviedb.org/3/${contentType}/${tmdbId}/videos?api_key=${tmdbApiKey}` ); if (!alive) return;