Standard-Rundenzeit von 60s auf 15s

This commit is contained in:
schmop 2026-05-31 22:48:09 +02:00
parent c1027db388
commit f8de69786e
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ export type Settings = {
export const DEFAULT_SETTINGS: Settings = {
schemaVersion: SCHEMA_VERSION,
roundSeconds: 60,
roundSeconds: 15,
soundOn: true,
};

View File

@ -5,7 +5,7 @@ export const ROUND_SECONDS_OPTIONS = [15, 30, 60] as const;
const initial: Settings =
typeof window === 'undefined'
? { schemaVersion: 1, roundSeconds: 60, soundOn: true }
? { schemaVersion: 1, roundSeconds: 15, soundOn: true }
: loadSettings();
export const settings = writable<Settings>(initial);