Skip to content

Commit

Permalink
[fix] Remove StyleSheet.compose(a, b) in FlatList
Browse files Browse the repository at this point in the history
  • Loading branch information
berkcoker authored and necolas committed Jul 19, 2023
1 parent 9d7dca1 commit 3babcc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ class FlatList<ItemT> extends React.PureComponent<Props<ItemT>, void> {
'Expected array of items with numColumns > 1',
);
return (
<View style={StyleSheet.compose(styles.row, columnWrapperStyle)}>
<View style={[styles.row, columnWrapperStyle]}>
{item.map((it, kk) => {
const element = render({
// $FlowFixMe[incompatible-call]
Expand Down

0 comments on commit 3babcc4

Please sign in to comment.