From 11d35c846d903ebcaae7eaaf93b3f3db0f9e1a46 Mon Sep 17 00:00:00 2001 From: lostb1t Date: Thu, 6 Nov 2025 16:10:12 +0100 Subject: [PATCH] Update ItemContent.tsx --- components/ItemContent.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/ItemContent.tsx b/components/ItemContent.tsx index 070b02e2..ae8c7b50 100644 --- a/components/ItemContent.tsx +++ b/components/ItemContent.tsx @@ -49,10 +49,11 @@ export type SelectedOptions = { interface ItemContentProps { item: BaseItemDto; isOffline: boolean; + mediaSourcesitem: BaseItemDto; } export const ItemContent: React.FC = React.memo( - ({ item, isOffline }) => { + ({ item, isOffline, mediaSourcesitem }) => { const [api] = useAtom(apiAtom); const { settings } = useSettings(); const { orientation } = useOrientation(); @@ -216,7 +217,7 @@ export const ItemContent: React.FC = React.memo( /> setSelectedOptions( (prev) => @@ -265,7 +266,7 @@ export const ItemContent: React.FC = React.memo(