diff options
author | Hailey <me@haileyok.com> | 2024-09-24 00:44:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 00:44:47 -0700 |
commit | b57ddd0968ebc08e9d5fc80b2e93fdb8786aef7e (patch) | |
tree | 790dba415c1c15906e93b57b07b72bfbfdac0055 /src/lib/haptics.ts | |
parent | 53b095adeb235cdee0b2b883057900d64f9d51e7 (diff) | |
download | voidsky-b57ddd0968ebc08e9d5fc80b2e93fdb8786aef7e.tar.zst |
Revert change in FAB animation (#5465)
Diffstat (limited to 'src/lib/haptics.ts')
-rw-r--r-- | src/lib/haptics.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/haptics.ts b/src/lib/haptics.ts index 390b76a0e..f588808fc 100644 --- a/src/lib/haptics.ts +++ b/src/lib/haptics.ts @@ -1,8 +1,8 @@ import React from 'react' import {impactAsync, ImpactFeedbackStyle} from 'expo-haptics' -import {isIOS, isWeb} from 'platform/detection' -import {useHapticsDisabled} from 'state/preferences/disable-haptics' +import {isIOS, isWeb} from '#/platform/detection' +import {useHapticsDisabled} from '#/state/preferences/disable-haptics' export function useHaptics() { const isHapticsDisabled = useHapticsDisabled() |