summaryrefslogtreecommitdiffhomepage
path: root/app/components/CustomScrollbars.android.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/CustomScrollbars.android.js')
-rw-r--r--app/components/CustomScrollbars.android.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/components/CustomScrollbars.android.js b/app/components/CustomScrollbars.android.js
index 8c9ea03da2..dadc462234 100644
--- a/app/components/CustomScrollbars.android.js
+++ b/app/components/CustomScrollbars.android.js
@@ -28,9 +28,6 @@ export default class CustomScrollbars extends Component<Props, State> {
render() {
const { autoHide: _autoHide, thumbInset: _thumbInset, children, ...otherProps } = this.props;
- return (
- <View { ...otherProps }>
- { children }
- </View>);
+ return <View {...otherProps}>{children}</View>;
}
}