From 41bb2c3a2c25fd090fdde7cbc089e441a819cee2 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 3 Apr 2026 23:10:22 -0500 Subject: [PATCH] Cast all mediaType props flowing to TmdbTitleCard --- src/components/UserProfile/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/UserProfile/index.tsx b/src/components/UserProfile/index.tsx index 64594f83..d3d93d9b 100644 --- a/src/components/UserProfile/index.tsx +++ b/src/components/UserProfile/index.tsx @@ -369,7 +369,7 @@ const UserProfile = () => { id={item.tmdbId} key={`watchlist-slider-item-${item.ratingKey}`} tmdbId={item.tmdbId} - type={item.mediaType} + type={item.mediaType as 'movie' | 'tv'} /> ))} /> @@ -395,7 +395,7 @@ const UserProfile = () => { id={item.id} tmdbId={item.tmdbId} tvdbId={item.tvdbId} - type={item.mediaType} + type={item.mediaType as 'movie' | 'tv'} /> ))} />