mobile: fix loading locales in release

This commit is contained in:
Ammar Ahmed
2025-03-01 10:44:45 +05:00
committed by Abdullah Atta
parent 5d05df7f83
commit 30dd0e8657

View File

@@ -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");