diff --git a/front/src/ui/details/movie.tsx b/front/src/ui/details/movie.tsx index 81509cc2..c46f25b5 100644 --- a/front/src/ui/details/movie.tsx +++ b/front/src/ui/details/movie.tsx @@ -1,16 +1,14 @@ -import { Platform, ScrollView } from "react-native"; -import { useYoshiki } from "yoshiki/native"; -import { Movie } from "~/models"; -import type { QueryIdentifier } from "~/query"; +import { ScrollView } from "react-native"; +import { useSafeAreaInsets } from "react-native-safe-area-context"; import { useQueryState } from "~/utils"; import { Header } from "./header"; export const MovieDetails = () => { const [slug] = useQueryState("slug", undefined!); - const { css } = useYoshiki(); + const insets = useSafeAreaInsets(); return ( - +
);