Use default values

This commit is contained in:
Santiago Lo Coco 2024-05-09 12:38:31 +02:00
parent 1c0641e563
commit 013089da11
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
import { writable } from "svelte/store"
import type { Writable } from "svelte/store"
const BREAK_INTERVAL_STORE: Writable<number> = writable(0.2)
const BREAK_INTERVAL_STORE: Writable<number> = writable(20)
const MINI_BREAK_DURATION_STORE: Writable<number> = writable(20)
const LONG_BREAK_DURATION_STORE: Writable<number> = writable(5)
const SOUND_ENABLED: Writable<boolean> = writable(true)