From d1f050f1b89d3428a17c0601e4f65f2e87188302 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 27 Aug 2023 22:35:34 -0700 Subject: feat(settings): add reset settings --- src/stores/cacheMangaMinutes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stores/cacheMangaMinutes.ts') 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( - browser ? localStorage.getItem('cacheMangaMinutes') ?? '120' : '120' + browser ? localStorage.getItem('cacheMangaMinutes') ?? '60' : '60' ); cacheMangaMinutes.subscribe((value) => { -- cgit v1.2.3