aboutsummaryrefslogtreecommitdiff
path: root/src/stores/cacheMangaMinutes.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-08-27 22:35:34 -0700
committerFuwn <[email protected]>2023-08-27 22:35:34 -0700
commitd1f050f1b89d3428a17c0601e4f65f2e87188302 (patch)
tree4b5200d094564f700231c51546c05750c4bd2f9a /src/stores/cacheMangaMinutes.ts
parentfeat(settings): rounding info text (diff)
downloaddue.moe-d1f050f1b89d3428a17c0601e4f65f2e87188302.tar.xz
due.moe-d1f050f1b89d3428a17c0601e4f65f2e87188302.zip
feat(settings): add reset settings
Diffstat (limited to 'src/stores/cacheMangaMinutes.ts')
-rw-r--r--src/stores/cacheMangaMinutes.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/cacheMangaMinutes.ts b/src/stores/cacheMangaMinutes.ts
index f4c714ad..6da460b2 100644
--- a/src/stores/cacheMangaMinutes.ts
+++ b/src/stores/cacheMangaMinutes.ts
@@ -2,7 +2,7 @@ import { browser } from '$app/environment';
import { writable } from 'svelte/store';
const cacheMangaMinutes = writable<string>(
- browser ? localStorage.getItem('cacheMangaMinutes') ?? '120' : '120'
+ browser ? localStorage.getItem('cacheMangaMinutes') ?? '60' : '60'
);
cacheMangaMinutes.subscribe((value) => {