From 4b4e8b7aa8383ae28085fb2eb8685d4fc3a5a159 Mon Sep 17 00:00:00 2001 From: jezzahehn Date: Thu, 12 Jun 2025 18:46:42 -0400 Subject: [PATCH] fix: Reverting default locale to en_US --- apps/vdn-static/src/i18n/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/vdn-static/src/i18n/index.ts b/apps/vdn-static/src/i18n/index.ts index 29633fc..c474d89 100644 --- a/apps/vdn-static/src/i18n/index.ts +++ b/apps/vdn-static/src/i18n/index.ts @@ -9,7 +9,7 @@ export type Locale = keyof typeof locales; const i18n = createI18n<[MessageSchema], Locale>({ legacy: false, - locale: "vp_VL" satisfies Locale, + locale: "en_US" satisfies Locale, fallbackLocale: "en_US" satisfies Locale, messages: locales, });