From d9bc18f55751901f8cef0f12f482e75418badd8f Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Wed, 14 Aug 2024 15:00:15 +0800 Subject: [PATCH] Oops, accidentally add this locale when it's not ready yet --- src/utils/lang.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/lang.js b/src/utils/lang.js index ae72af35..0a80e896 100644 --- a/src/utils/lang.js +++ b/src/utils/lang.js @@ -13,7 +13,7 @@ import localeMatch from '../utils/locale-match'; const { PHANPY_DEFAULT_LANG } = import.meta.env; export const DEFAULT_LANG = 'en'; -export const LOCALES = [DEFAULT_LANG, 'zh-CN']; +export const LOCALES = [DEFAULT_LANG]; if (import.meta.env.DEV) { LOCALES.push('pseudo-LOCALE'); }