diff options
Diffstat (limited to 'src/platform')
-rw-r--r-- | src/platform/detection.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/platform/detection.ts b/src/platform/detection.ts index 0c0360a82..f00df0ee4 100644 --- a/src/platform/detection.ts +++ b/src/platform/detection.ts @@ -1,5 +1,4 @@ import {Platform} from 'react-native' -import {isReducedMotion} from 'react-native-reanimated' import {getLocales} from 'expo-localization' import {fixLegacyLanguageCode} from '#/locale/helpers' @@ -21,5 +20,3 @@ export const deviceLocales = dedupArray( .map?.(locale => fixLegacyLanguageCode(locale.languageCode)) .filter(code => typeof code === 'string'), ) as string[] - -export const prefersReducedMotion = isReducedMotion() |