diff --git a/src/components/InvertedFlatList/index.android.js b/src/components/InvertedFlatList/index.android.js index e759f3e3f648..3f8dc11ca23f 100644 --- a/src/components/InvertedFlatList/index.android.js +++ b/src/components/InvertedFlatList/index.android.js @@ -17,7 +17,7 @@ export default forwardRef((props, ref) => ( // we manually invert the FlatList to circumvent a react-native bug that causes ANR on android 13 inverted={false} style={styles.invert} - verticalScrollbarPosition="left" // we are mirroring the X and Y axis, so we need to swap the scrollbar position + verticalScrollbarPosition="left" // We are mirroring the X and Y axis, so we need to swap the scrollbar position CellRendererComponent={InvertedCell} />