Standard-Rundenzeit von 60s auf 15s
This commit is contained in:
parent
c1027db388
commit
f8de69786e
|
|
@ -26,7 +26,7 @@ export type Settings = {
|
||||||
|
|
||||||
export const DEFAULT_SETTINGS: Settings = {
|
export const DEFAULT_SETTINGS: Settings = {
|
||||||
schemaVersion: SCHEMA_VERSION,
|
schemaVersion: SCHEMA_VERSION,
|
||||||
roundSeconds: 60,
|
roundSeconds: 15,
|
||||||
soundOn: true,
|
soundOn: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ export const ROUND_SECONDS_OPTIONS = [15, 30, 60] as const;
|
||||||
|
|
||||||
const initial: Settings =
|
const initial: Settings =
|
||||||
typeof window === 'undefined'
|
typeof window === 'undefined'
|
||||||
? { schemaVersion: 1, roundSeconds: 60, soundOn: true }
|
? { schemaVersion: 1, roundSeconds: 15, soundOn: true }
|
||||||
: loadSettings();
|
: loadSettings();
|
||||||
|
|
||||||
export const settings = writable<Settings>(initial);
|
export const settings = writable<Settings>(initial);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user