diff options
Diffstat (limited to 'src/screens/VideoFeed/components/Scrubber.tsx')
-rw-r--r-- | src/screens/VideoFeed/components/Scrubber.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screens/VideoFeed/components/Scrubber.tsx b/src/screens/VideoFeed/components/Scrubber.tsx index 29cc4b278..69e68ec9e 100644 --- a/src/screens/VideoFeed/components/Scrubber.tsx +++ b/src/screens/VideoFeed/components/Scrubber.tsx @@ -3,13 +3,13 @@ import {View} from 'react-native' import { Gesture, GestureDetector, - NativeGesture, + type NativeGesture, } from 'react-native-gesture-handler' import Animated, { interpolate, runOnJS, runOnUI, - SharedValue, + type SharedValue, useAnimatedReaction, useAnimatedStyle, useSharedValue, @@ -20,7 +20,7 @@ import { useSafeAreaInsets, } from 'react-native-safe-area-context' import {useEventListener} from 'expo' -import {VideoPlayer} from 'expo-video' +import {type VideoPlayer} from 'expo-video' import {tokens} from '#/alf' import {atoms as a} from '#/alf' |