diff --git a/src/i18n/locale/en.json b/src/i18n/locale/en.json index 4ad1808a6b..2ba11468b1 100644 --- a/src/i18n/locale/en.json +++ b/src/i18n/locale/en.json @@ -529,8 +529,6 @@ }, "label": { "dark_theme": "Dark theme", - "image_cache": "Use image cache", - "image_cache_description": "Reduces the data consumption and improves the performance when a already requested image gets requested again", "language_description": "Feel free to translate the project on", "manga_item_width": "Manga item width", "show_nsfw": "Show NSFW", diff --git a/src/screens/Settings.tsx b/src/screens/Settings.tsx index 783363da02..d341e8195a 100644 --- a/src/screens/Settings.tsx +++ b/src/screens/Settings.tsx @@ -13,7 +13,6 @@ import ListAltIcon from '@mui/icons-material/ListAlt'; import BackupIcon from '@mui/icons-material/Backup'; import Brightness6Icon from '@mui/icons-material/Brightness6'; import InfoIcon from '@mui/icons-material/Info'; -import CachedIcon from '@mui/icons-material/Cached'; import ListItem from '@mui/material/ListItem'; import ListItemIcon from '@mui/material/ListItemIcon'; import ListItemText from '@mui/material/ListItemText'; @@ -45,7 +44,6 @@ export function Settings() { const { darkTheme, setDarkTheme } = useContext(DarkTheme); const [showNsfw, setShowNsfw] = useLocalStorage('showNsfw', true); - const [useCache, setUseCache] = useLocalStorage('useCache', true); const DEFAULT_ITEM_WIDTH = 300; const itemWidthIcon = useMemo(() => , []); @@ -118,18 +116,6 @@ export function Settings() { setShowNsfw(!showNsfw)} /> - - - - - - - setUseCache(!useCache)} /> - -