After upgrade from version 6.1.0 to 6.3.0, this warning appears:

My modal doesn't even have supportedOrientations prop:
<Modal
style={styles.modal}
isVisible={isVisible}
backdropOpacity={0.3}
onBackdropPress={onPressOutside}
>
<View style={styles.container}>
<FlatList
data={categories}
keyExtractor={this.keyExtractor}
renderItem={({ item }) => this.renderItem(item, () => onItemSelected(item))}
/>
</View>
</Modal>
I tried to add supportedOrientations={["portrait"]} but the warning still persists.
Hi! The warning was fixed in the other pull request I made, just waiting for @mmazzarolo to make a new release with it and it should be all good! Sorry for the inconvenience!
@kientux could you check if the warning still persists on v6.4.0?
The warning is gone with v6.4.0. Thanks for the quick fix!
Most helpful comment
The warning is gone with
v6.4.0. Thanks for the quick fix!