From ed5178bfd761c6fbe4382dca68c8a967c1d0c72d Mon Sep 17 00:00:00 2001 From: Andres Felipe Nunez B Date: Wed, 10 Jan 2024 12:27:20 -0500 Subject: [PATCH] Fix pointerEvents in ActionSheet component --- src/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 9ad6b09..e989d18 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -939,7 +939,7 @@ export default forwardRef( height: initialWindowHeight.current, }, pointerEvents: props?.backgroundInteractionEnabled - ? 'box-none' + ? 'none' : 'auto', }, [ @@ -1051,7 +1051,7 @@ export default forwardRef( onLayout={onDeviceLayout} ref={deviceContainerRef} pointerEvents={ - props?.backgroundInteractionEnabled ? 'box-none' : 'auto' + props?.backgroundInteractionEnabled ? 'none' : 'auto' } style={[ styles.parentContainer, @@ -1086,7 +1086,7 @@ export default forwardRef( ) : null}