@@ -3000,7 +3000,6 @@ const DesktopStreamViewer: React.FC<DesktopStreamViewerProps> = ({
30003000 // - Two finger scroll: scroll
30013001 const handleTouchStart = useCallback (
30023002 ( event : React . TouchEvent ) => {
3003- event . preventDefault ( ) ;
30043003 const handler = getInputHandler ( ) ;
30053004 const rect = getStreamRect ( ) ;
30063005 if ( ! handler ) return ;
@@ -3157,7 +3156,6 @@ const DesktopStreamViewer: React.FC<DesktopStreamViewerProps> = ({
31573156
31583157 const handleTouchMove = useCallback (
31593158 ( event : React . TouchEvent ) => {
3160- event . preventDefault ( ) ;
31613159 const handler = getInputHandler ( ) ;
31623160 const rect = getStreamRect ( ) ;
31633161 if ( ! handler ) return ;
@@ -3423,7 +3421,6 @@ const DesktopStreamViewer: React.FC<DesktopStreamViewerProps> = ({
34233421
34243422 const handleTouchEnd = useCallback (
34253423 ( event : React . TouchEvent ) => {
3426- event . preventDefault ( ) ;
34273424 const handler = getInputHandler ( ) ;
34283425 const rect = getStreamRect ( ) ;
34293426 if ( ! handler ) return ;
@@ -3588,7 +3585,6 @@ const DesktopStreamViewer: React.FC<DesktopStreamViewerProps> = ({
35883585
35893586 const handleTouchCancel = useCallback (
35903587 ( event : React . TouchEvent ) => {
3591- event . preventDefault ( ) ;
35923588 const handler = getInputHandler ( ) ;
35933589 const rect = getStreamRect ( ) ;
35943590 if ( ! handler ) return ;
0 commit comments