diff --git a/components/video-player/Controls.tsx b/components/video-player/Controls.tsx index 087b4ae2..780d012a 100644 --- a/components/video-player/Controls.tsx +++ b/components/video-player/Controls.tsx @@ -397,32 +397,6 @@ export const Controls: React.FC = ({ )[]; }, [item, isVideoLoaded, subtitleTracks, mediaSource]); - /** - * Bottom sheet - */ - const bottomSheetModalRef = useRef(null); - - const handlePresentModalPress = useCallback(() => { - bottomSheetModalRef.current?.present(); - }, []); - - const handleSheetChanges = useCallback((index: number) => {}, []); - - const closeModal = useCallback(() => { - bottomSheetModalRef.current?.dismiss(); - }, []); - - const renderBackdrop = useCallback( - (props: BottomSheetBackdropProps) => ( - - ), - [] - ); - return (