diff --git a/src/routes/timer/+page.svelte b/src/routes/timer/+page.svelte index 5fd8f1c..5e588c4 100644 --- a/src/routes/timer/+page.svelte +++ b/src/routes/timer/+page.svelte @@ -3,7 +3,7 @@ import { writable } from "svelte/store" import type { Writable } from "svelte/store" - const BREAK_INTERVAL_STORE: Writable = writable(0.2) + const BREAK_INTERVAL_STORE: Writable = writable(20) const MINI_BREAK_DURATION_STORE: Writable = writable(20) const LONG_BREAK_DURATION_STORE: Writable = writable(5) const SOUND_ENABLED: Writable = writable(true)