Skip to content

Commit 3babcc4

Browse files
berkcokernecolas
authored andcommittedJul 19, 2023
[fix] Remove StyleSheet.compose(a, b) in FlatList
Close #2555 Fix #2554
1 parent 9d7dca1 commit 3babcc4

File tree

1 file changed

+1
-1
lines changed
  • packages/react-native-web/src/vendor/react-native/FlatList

1 file changed

+1
-1
lines changed
 

‎packages/react-native-web/src/vendor/react-native/FlatList/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ class FlatList<ItemT> extends React.PureComponent<Props<ItemT>, void> {
627627
'Expected array of items with numColumns > 1',
628628
);
629629
return (
630-
<View style={StyleSheet.compose(styles.row, columnWrapperStyle)}>
630+
<View style={[styles.row, columnWrapperStyle]}>
631631
{item.map((it, kk) => {
632632
const element = render({
633633
// $FlowFixMe[incompatible-call]

0 commit comments

Comments
 (0)
Please sign in to comment.