From 5d22e727c8b06f250e557ba62a84dc3edb5e6ee8 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Tue, 3 Mar 2026 12:37:23 -0800 Subject: [PATCH] Explicity check for iOS --- src/lib/translation/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/translation/index.tsx b/src/lib/translation/index.tsx index 7a16aea04e..4b04c9bf15 100644 --- a/src/lib/translation/index.tsx +++ b/src/lib/translation/index.tsx @@ -37,7 +37,7 @@ async function attemptTranslation( : sourceLangCodeOriginal // Special cases for regional languages - if (Platform.OS !== 'android') { + if (Platform.OS === 'ios') { const deviceLocales = getLocales() const primaryLanguageTag = deviceLocales[0]?.languageTag switch (targetLangCodeOriginal) {