Skip to content

Commit 10d816c

Browse files
committed
fix: force the app to LTR
1 parent b894d27 commit 10d816c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/core/i18n/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { locale } from 'expo-localization';
21
import i18n from 'i18next';
32
import { initReactI18next } from 'react-i18next';
43
import { I18nManager } from 'react-native';
@@ -9,7 +8,7 @@ export * from './utils';
98

109
i18n.use(initReactI18next).init({
1110
resources,
12-
lng: getLanguage() || locale,
11+
lng: getLanguage() || 'en',
1312
fallbackLng: 'en',
1413
compatibilityJSON: 'v3', // By default React Native projects does not support Intl
1514

0 commit comments

Comments
 (0)