···386386 data={convoState.items}
387387 renderItem={renderItem}
388388 keyExtractor={keyExtractor}
389389- containWeb={true}
389389+ disableFullWindowScroll={true}
390390 // Prevents wrong position in Firefox when sending a message
391391 // as well as scroll getting stuck on Chome when scrolling upwards.
392392- disableContentVisibility={true}
392392+ disableContainStyle={true}
393393 disableVirtualization={true}
394394 style={animatedListStyle}
395395 // The extra two items account for the header and the footer components
···2424 refreshing?: boolean
2525 onRefresh?: () => void
2626 onItemSeen?: (item: ItemT) => void
2727- containWeb?: boolean
2827 desktopFixedHeight?: number | boolean
2828+ // Web only prop to contain the scroll to the container rather than the window
2929+ disableFullWindowScroll?: boolean
2930 sideBorders?: boolean
3031 // Web only prop to disable a perf optimization (which would otherwise be on).
3131- disableContentVisibility?: boolean
3232+ disableContainStyle?: boolean
3233}
3334export type ListRef = React.MutableRefObject<FlatList_INTERNAL | null>
3435