From 2afc08d159d8b1574975291f35115e85d4941dff Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Sun, 17 Mar 2024 16:42:03 -0400 Subject: [PATCH] Test --- src/pages/TopFlix.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/TopFlix.tsx b/src/pages/TopFlix.tsx index f85cb850..48c8a293 100644 --- a/src/pages/TopFlix.tsx +++ b/src/pages/TopFlix.tsx @@ -180,8 +180,7 @@ export function TopFlix() { {getItemsForCurrentPage().map((item) => { const tmdbId = item.tmdbFullId.split("-")[1]; const type = isShowOrMovie(item.tmdbFullId); - // const poster = await getPoster(tmdbId, type === "movie" ? TMDBContentTypes.MOVIE : TMDBContentTypes.TV); - const poster = ""; + const poster = getPoster(tmdbId, type === "movie" ? TMDBContentTypes.MOVIE : TMDBContentTypes.TV); console.log(poster); const media: MediaItem = { id: tmdbId,