From a437449ec661857e71c51a418a5815f32b02efd4 Mon Sep 17 00:00:00 2001 From: Devin Spikowski Date: Thu, 26 Sep 2024 03:26:09 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=BA=20Reset=20to=20alphabetic=20on=20k?= =?UTF-8?q?eyboard=20layout=20validation=20fail?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/validation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/validation.ts b/src/store/validation.ts index 2ab804c..d031897 100644 --- a/src/store/validation.ts +++ b/src/store/validation.ts @@ -32,7 +32,7 @@ export function validateLocalStorage() { if (![true, false].includes(get(app.shareTimes))) app.shareTimes.set(false) if (![true, false].includes(get(app.preciseTimes))) app.preciseTimes.set(false) if (!keyboardLayoutNames.includes(get(app.keyboardLayout))) - app.keyboardLayout.set('qwerty') + app.keyboardLayout.set('alphabetic') // Stats const stats = get(app.stats)