mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:33:26 +00:00
much lint very lint
This commit is contained in:
@@ -81,14 +81,12 @@ const EmbedsPart = ({
|
||||
const theme = useTheme();
|
||||
const { data, isPending, isError, error, status } = useSourceScrape(sourceId);
|
||||
|
||||
console.log(data);
|
||||
|
||||
useEffect(() => {
|
||||
if (status === "success" && !isError && data && data?.length <= 1) {
|
||||
props.onOpenChange?.(false);
|
||||
closeParent?.(false);
|
||||
}
|
||||
}, [props.onOpenChange, status, data, isError]);
|
||||
}, [status, data, isError, props, closeParent]);
|
||||
|
||||
return (
|
||||
<Settings.Sheet
|
||||
|
@@ -5,11 +5,8 @@ import { Dimensions, Platform } from "react-native";
|
||||
import { Gesture, GestureDetector } from "react-native-gesture-handler";
|
||||
import Animated, {
|
||||
runOnJS,
|
||||
useAnimatedProps,
|
||||
useAnimatedStyle,
|
||||
useDerivedValue,
|
||||
useSharedValue,
|
||||
withTiming,
|
||||
} from "react-native-reanimated";
|
||||
import { ResizeMode, Video } from "expo-av";
|
||||
import * as Haptics from "expo-haptics";
|
||||
@@ -17,7 +14,7 @@ import * as NavigationBar from "expo-navigation-bar";
|
||||
import { useRouter } from "expo-router";
|
||||
import * as StatusBar from "expo-status-bar";
|
||||
import { Feather } from "@expo/vector-icons";
|
||||
import { Progress, Spinner, Text, useTheme, View } from "tamagui";
|
||||
import { Spinner, useTheme, View } from "tamagui";
|
||||
|
||||
import { findHighestQuality } from "@movie-web/provider-utils";
|
||||
|
||||
|
Reference in New Issue
Block a user