Skip to content

Commit 6e424f3

Browse files
committed
yarn lint --fix
1 parent c743549 commit 6e424f3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

packages/rn-tester/js/components/ListExampleShared.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,12 @@ class ItemComponent extends React.PureComponent<{
8888
horizontal && {width: HORIZ_WIDTH},
8989
fixedHeight && {height: ITEM_HEIGHT},
9090
isSelected && styles.selectedItem, // TODO(macOS GH#774)
91-
]}
92-
>
91+
]}>
9392
{!item.noImage && <Image style={styles.thumb} source={imgSource} />}
9493
<Text
9594
style={[styles.text, isSelected && styles.selectedItemText]} // TODO(macOS GH#774)
9695
selectable={textSelectable}
97-
numberOfLines={horizontal || fixedHeight ? 3 : undefined}
98-
>
96+
numberOfLines={horizontal || fixedHeight ? 3 : undefined}>
9997
{item.title} - {item.text}
10098
</Text>
10199
</View>

0 commit comments

Comments
 (0)