diff --git a/app/(auth)/(tabs)/(home,libraries,search,favorites)/jellyseerr/page.tsx b/app/(auth)/(tabs)/(home,libraries,search,favorites)/jellyseerr/page.tsx index 52e64bc5..f68874f3 100644 --- a/app/(auth)/(tabs)/(home,libraries,search,favorites)/jellyseerr/page.tsx +++ b/app/(auth)/(tabs)/(home,libraries,search,favorites)/jellyseerr/page.tsx @@ -38,7 +38,7 @@ import React, { } from "react"; import { Platform, TouchableOpacity, View } from "react-native"; import { useSafeAreaInsets } from "react-native-safe-area-context"; -const DropdownMenu = !Platform.isTV ? require("zeego/dropdown-menu") : null; +import * as DropdownMenu from "zeego/dropdown-menu"; import RequestModal from "@/components/jellyseerr/RequestModal"; import { ANIME_KEYWORD_ID } from "@/utils/jellyseerr/server/api/themoviedb/constants"; import { MediaRequestBody } from "@/utils/jellyseerr/server/interfaces/api/requestInterfaces"; diff --git a/components/jellyseerr/discover/GenreSlide.tsx b/components/jellyseerr/discover/GenreSlide.tsx index 36623e20..156777ed 100644 --- a/components/jellyseerr/discover/GenreSlide.tsx +++ b/components/jellyseerr/discover/GenreSlide.tsx @@ -48,7 +48,7 @@ const GenreSlide: React.FC = ({ slide, ...props }) => { className="w-28 rounded-lg overflow-hidden border border-neutral-900" id={item.id.toString()} title={item.name} - colors={[]} + // colors={[]} contentFit={"cover"} url={jellyseerrApi?.imageProxy( item.backdrops?.[0], diff --git a/providers/DownloadProvider.tsx b/providers/DownloadProvider.tsx index 0c339e10..d8d51844 100644 --- a/providers/DownloadProvider.tsx +++ b/providers/DownloadProvider.tsx @@ -66,7 +66,6 @@ const DownloadContext = createContext | null>(null); function useDownloadProvider() { - if (Platform.isTV) return; const queryClient = useQueryClient(); const { t } = useTranslation(); const [settings] = useSettings();