Skip to content

Commit 7ac83c9

Browse files
committed
disable accessibility for touchableFeedback wrapper in dialog
1 parent 2afe35f commit 7ac83c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/dialog/dialogDeprecated.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class DialogDeprecated extends BaseComponent {
152152
const bottomInsets = Constants.getSafeAreaInsets().bottom;
153153

154154
return (
155-
<TouchableWithoutFeedback>
155+
<TouchableWithoutFeedback accessible={false}>
156156
<SafeAreaView style={{flexGrow: 1}}>
157157
{this.props.children}
158158
{useSafeArea && Constants.isIphoneX && bottom && <View style={{marginTop: bottomInsets}}/>}

0 commit comments

Comments
 (0)