mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 15:03:26 +00:00
chore: format
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
@@ -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;
|
||||
export default DownloadsScreen;
|
||||
|
Reference in New Issue
Block a user