From ea104a5e54b1cdfaf911c94e9d4ea1d746c5e7f1 Mon Sep 17 00:00:00 2001 From: sunxunle <163647374+sunxunle@users.noreply.github.com> Date: Sun, 17 Mar 2024 09:52:04 +0800 Subject: [PATCH] chore: fix typo (#3106) --- web/src/utils/i18n.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/utils/i18n.ts b/web/src/utils/i18n.ts index 29020c2cc..ca9434393 100644 --- a/web/src/utils/i18n.ts +++ b/web/src/utils/i18n.ts @@ -22,7 +22,7 @@ export const findNearestMatchedLanguage = (language: string): Locale => { } // Try to match "xx-YY" to existing translation for "xx-ZZ" as a last resort - // If some match is undesired, it can be overriden in src/i18n.ts `fallbacks` option + // If some match is undesired, it can be overridden in src/i18n.ts `fallbacks` option for (const existing of locales) { if (shortCode == existing.substring(0, 2)) { return existing as Locale;