diff --git a/src/view/com/util/Views.web.tsx b/src/view/com/util/Views.web.tsx index 3742faf941..6627c84a03 100644 --- a/src/view/com/util/Views.web.tsx +++ b/src/view/com/util/Views.web.tsx @@ -169,7 +169,11 @@ let Row = function RowImpl({ if (!renderItem) { return null } - return renderItem({item, index, separators: null as any}) + return ( + + {renderItem({item, index, separators: null as any})} + + ) } Row = React.memo(Row) @@ -250,4 +254,8 @@ const styles = StyleSheet.create({ marginLeft: 'auto', marginRight: 'auto', }, + row: { + // @ts-ignore web + contentVisibility: 'auto', + }, })