chore: bump deps

This commit is contained in:
2026-03-13 15:55:25 -04:00
parent 893f4c1b76
commit c021b8157b
30 changed files with 158 additions and 163 deletions
+3 -10
View File
@@ -15,14 +15,7 @@ import { LinearGradient } from "expo-linear-gradient";
import { Stack, useLocalSearchParams, useRouter } from "expo-router";
import * as WebBrowser from "expo-web-browser";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import {
FlatList,
Platform,
Pressable,
RefreshControl,
ScrollView,
View,
} from "react-native";
import { FlatList, Platform, Pressable, ScrollView, View } from "react-native";
import Animated, { FadeIn, FadeInDown } from "react-native-reanimated";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { useCSSVariable } from "uniwind";
@@ -141,8 +134,8 @@ export default function TitleDetailScreen() {
}),
);
const [refreshing, setRefreshing] = useState(false);
const onRefresh = useCallback(async () => {
const [_refreshing, setRefreshing] = useState(false);
const _onRefresh = useCallback(async () => {
setRefreshing(true);
await queryClient.invalidateQueries({ queryKey: orpc.titles.key() });
setRefreshing(false);