We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21757e7 commit 8da990aCopy full SHA for 8da990a
ClusteredMapView.js
@@ -43,12 +43,12 @@ export default class ClusteredMapView extends PureComponent {
43
this.clusterize(this.props.data)
44
}
45
46
- componentWillReceiveProps(nextProps) {
+ UNSAFE_componentWillReceiveProps(nextProps) {
47
if (this.props.data !== nextProps.data)
48
this.clusterize(nextProps.data)
49
50
51
- componentWillUpdate(nextProps, nextState) {
+ UNSAFE_componentWillUpdate(nextProps, nextState) {
52
if (!this.isAndroid && this.props.animateClusters && this.clustersChanged(nextState))
53
LayoutAnimation.configureNext(this.props.layoutAnimationConf)
54
0 commit comments