aboutsummaryrefslogtreecommitdiff
path: root/src/stores/roundDownChapters.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/roundDownChapters.ts')
-rw-r--r--src/stores/roundDownChapters.ts2
1 files changed, 1 insertions, 1 deletions
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<string>(
- browser ? localStorage.getItem('roundDownChapters') ?? 'false' : 'false'
+ browser ? localStorage.getItem('roundDownChapters') ?? 'true' : 'true'
);
roundDownChapters.subscribe((value) => {