diff --git a/apps/expo/modules/check-ios-certificate/index.ts b/apps/expo/modules/check-ios-certificate/index.ts index be2671d..1e8c8e9 100644 --- a/apps/expo/modules/check-ios-certificate/index.ts +++ b/apps/expo/modules/check-ios-certificate/index.ts @@ -3,9 +3,11 @@ import CheckIosCertificateModule from "./src/CheckIosCertificateModule"; interface CheckIosCertificateModule { - isDevelopmentProvisioningProfile(): boolean; + isDevelopmentProvisioningProfile(): boolean; } export function isDevelopmentProvisioningProfile(): boolean { - return (CheckIosCertificateModule as CheckIosCertificateModule).isDevelopmentProvisioningProfile(); + return ( + CheckIosCertificateModule as CheckIosCertificateModule + ).isDevelopmentProvisioningProfile(); } diff --git a/apps/expo/src/app/(tabs)/downloads.tsx b/apps/expo/src/app/(tabs)/downloads.tsx index 01a00c9..35a167f 100644 --- a/apps/expo/src/app/(tabs)/downloads.tsx +++ b/apps/expo/src/app/(tabs)/downloads.tsx @@ -7,19 +7,14 @@ import { MaterialCommunityIcons } from "@expo/vector-icons"; import { isDevelopmentProvisioningProfile } from "modules/check-ios-certificate"; import { useTheme, YStack } from "tamagui"; - - import type { ScrapeMedia } from "@movie-web/provider-utils"; - - import { DownloadItem } from "~/components/DownloadItem"; import ScreenLayout from "~/components/layout/ScreenLayout"; import { MWButton } from "~/components/ui/Button"; import { useDownloadManager } from "~/hooks/DownloadManagerContext"; import { usePlayerStore } from "~/stores/player/store"; - const DownloadsScreen: React.FC = () => { const { startDownload, downloads } = useDownloadManager(); const resetVideo = usePlayerStore((state) => state.resetVideo); @@ -128,4 +123,4 @@ const DownloadsScreen: React.FC = () => { ); }; -export default DownloadsScreen; \ No newline at end of file +export default DownloadsScreen;