diff --git a/src/components/Button/index.tsx b/src/components/Button/index.tsx index 3b05d22fe6c4..68f1aac41a5b 100644 --- a/src/components/Button/index.tsx +++ b/src/components/Button/index.tsx @@ -289,6 +289,10 @@ function Button( currentTarget?.blur(); } + if (event?.type === 'keyup') { + return; + } + if (shouldEnableHapticFeedback) { HapticFeedback.press(); }