diff --git a/packages/react-navigation/src/views/TouchableItem.js b/packages/react-navigation/src/views/TouchableItem.js index 2e38edf2..a6789e70 100644 --- a/packages/react-navigation/src/views/TouchableItem.js +++ b/packages/react-navigation/src/views/TouchableItem.js @@ -49,7 +49,7 @@ export default class TouchableItem extends React.Component { Platform.OS === 'android' && Platform.Version >= ANDROID_VERSION_LOLLIPOP ) { - const { style, ...rest } = this.props; // eslint-disable-line no-unused-vars + const { style, ...rest } = this.props; return ( { this.props.borderless || false )} > - - {React.Children.only(this.props.children)} - + {React.Children.only(this.props.children)} ); }