aboutsummaryrefslogtreecommitdiff
path: root/src/stores/locale.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/locale.ts')
-rw-r--r--src/stores/locale.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stores/locale.ts b/src/stores/locale.ts
index 1b94ea96..fc879b46 100644
--- a/src/stores/locale.ts
+++ b/src/stores/locale.ts
@@ -58,8 +58,7 @@ const createLocale = () => {
resolved = current;
} else {
const fallback = $json(keyStr, FALLBACK_LOCALE);
- const fallbackMissing =
- fallback === keyStr || fallback == null;
+ const fallbackMissing = fallback === keyStr || fallback == null;
if (currentMissing && fallbackMissing) return undefined;
if (currentMissing) resolved = fallback;