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 f63db43 commit 451783fCopy full SHA for 451783f
src/components/Card/Card.tsx
@@ -258,11 +258,7 @@ const Card = ({
258
};
259
260
const content = (
261
- <View
262
- style={[styles.innerContainer, contentStyle]}
263
- testID={testID}
264
- accessible={accessible}
265
- >
+ <View style={[styles.innerContainer, contentStyle]} testID={testID}>
266
{React.Children.map(children, (child, index) =>
267
React.isValidElement(child)
268
? React.cloneElement(child as React.ReactElement<any>, {
@@ -311,6 +307,7 @@ const Card = ({
311
307
312
308
{hasPassedTouchHandler ? (
313
309
<TouchableWithoutFeedback
310
+ accessible={accessible}
314
delayPressIn={0}
315
disabled={disabled}
316
delayLongPress={delayLongPress}
0 commit comments