Merge branch 'rename-unsafe-lifecycles' into 'develop'

Bundle: componentWillReceiveProps --> UNSAFE_componentWillReceiveProps

See merge request soapbox-pub/soapbox!2013
This commit is contained in:
Alex Gleason 2022-12-17 17:29:56 +00:00
commit 5f08091856

View file

@ -45,7 +45,7 @@ class Bundle extends React.PureComponent<BundleProps, BundleState> {
this.load(this.props);
}
componentWillReceiveProps(nextProps: BundleProps) {
UNSAFE_componentWillReceiveProps(nextProps: BundleProps) {
if (nextProps.fetchComponent !== this.props.fetchComponent) {
this.load(nextProps);
}