From 30dd0e8657d80b95f5f4faf5e4fedbcacc05600e Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Sat, 1 Mar 2025 10:44:45 +0500 Subject: [PATCH] mobile: fix loading locales in release --- apps/mobile/native/globals.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/mobile/native/globals.js b/apps/mobile/native/globals.js index 7232f241a..c5fdbd861 100644 --- a/apps/mobile/native/globals.js +++ b/apps/mobile/native/globals.js @@ -22,7 +22,7 @@ import { import Config from "react-native-config"; i18n.load({ - en: !__DEV__ && Config.isTesting !== "true" ? $pseudo : $en + en: __DEV__ && Config.isTesting !== "true" ? $pseudo : $en }); setI18nGlobal(i18n); i18n.activate("en");