We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129e053 commit 0d0c186Copy full SHA for 0d0c186
src/components/modal/index.tsx
@@ -60,10 +60,11 @@ class Modal extends Component<ModalProps> {
60
<View
61
useSafeArea={isScreenReaderEnabled}
62
style={!isScreenReaderEnabled && [styles.touchableOverlay, {backgroundColor: overlayBackgroundColor}]}
63
+ testID={testID}
64
>
65
{/*
66
// @ts-ignore */}
- <TouchableWithoutFeedback {...accessibilityProps} onPress={onBackgroundPress} testID={testID}>
67
+ <TouchableWithoutFeedback {...accessibilityProps} onPress={onBackgroundPress}>
68
<View style={isScreenReaderEnabled ? styles.accessibleOverlayView : styles.overlayView}/>
69
</TouchableWithoutFeedback>
70
</View>
0 commit comments