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/roundDownChapters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stores/roundDownChapters.ts') diff --git a/src/stores/roundDownChapters.ts b/src/stores/roundDownChapters.ts index f4ac3513..8cbdbdc1 100644 --- a/src/stores/roundDownChapters.ts +++ b/src/stores/roundDownChapters.ts @@ -2,7 +2,7 @@ import { browser } from '$app/environment'; import { writable } from 'svelte/store'; const roundDownChapters = writable( - browser ? localStorage.getItem('roundDownChapters') ?? 'false' : 'false' + browser ? localStorage.getItem('roundDownChapters') ?? 'true' : 'true' ); roundDownChapters.subscribe((value) => { -- cgit v1.2.3