diff options
author | Hailey <me@haileyok.com> | 2024-08-05 12:21:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 12:21:34 -0700 |
commit | 18b423396b75d8b4348a434412d0da1f38230717 (patch) | |
tree | 3a3032668f498bb2d17fbee7514493d4f82cc6b3 /src/platform/detection.ts | |
parent | fb278384c64f55e5037275a23f4bd7af91dc7274 (diff) | |
download | voidsky-18b423396b75d8b4348a434412d0da1f38230717.tar.zst |
Add `PlatformInfo` module (#4877)
Diffstat (limited to 'src/platform/detection.ts')
-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() |