From aec03aa0a3bdd3a44e11b3a575b7424f17da3ee4 Mon Sep 17 00:00:00 2001 From: Matthew Wall Date: Thu, 19 Oct 2023 19:49:43 -0600 Subject: [PATCH] change default behavior to not allow click through --- .../ButtonPressAnimation/ButtonPressAnimation.android.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/animations/ButtonPressAnimation/ButtonPressAnimation.android.tsx b/src/components/animations/ButtonPressAnimation/ButtonPressAnimation.android.tsx index c57e0724ff6..0969e186038 100644 --- a/src/components/animations/ButtonPressAnimation/ButtonPressAnimation.android.tsx +++ b/src/components/animations/ButtonPressAnimation/ButtonPressAnimation.android.tsx @@ -294,7 +294,7 @@ export default function ButtonPressAnimation({ wrapperStyle, hapticType = 'selection', enableHapticFeedback = true, - disallowInterruption = false, + disallowInterruption = true, }: Props) { const normalizedTransformOrigin = useMemo( () => normalizeTransformOrigin(transformOrigin),