From 013089da11faa4d7d4291ff166951842c0cee470 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 9 May 2024 12:38:31 +0200 Subject: [PATCH] Use default values --- src/routes/timer/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)