From 24d14be81be65a1310f8236adb102cd8ca81b219 Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Sat, 25 Jan 2025 12:34:25 -0600 Subject: [PATCH] remove cached image --- App.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/App.tsx b/App.tsx index d86d0f2f..8acee004 100644 --- a/App.tsx +++ b/App.tsx @@ -8,20 +8,8 @@ import { useColorScheme } from 'react-native'; import jellifyConfig from './tamagui.config'; import { clientPersister } from './constants/storage'; import { queryClient } from './constants/query-client'; -import { CacheManager } from '@georstat/react-native-image-cache'; -import { Dirs } from "react-native-file-access"; import { EventProvider } from "react-native-outside-press"; -CacheManager.config = { - baseDir: `${Dirs.CacheDir}/images_cache/`, - blurRadius: 15, - cacheLimit: 0, - maxRetries: 3 /* optional, if not provided defaults to 0 */, - retryDelay: 3000 /* in milliseconds, optional, if not provided defaults to 0 */, - sourceAnimationDuration: 1000, - thumbnailAnimationDuration: 1000, -}; - export default function App(): React.JSX.Element { const isDarkMode = useColorScheme() === 'dark';