File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { connect } from 'react-redux'
44import ApplicationActionCreator from '../../actions/application/'
55
66class ApplicationsList extends Component {
7- componentWillReceiveProps ( nextProps ) {
7+ UnsafeComponentWillReceiveProps ( nextProps ) {
88 this . _markAsSeenApplications ( nextProps . applications )
99 }
1010
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class Home extends Component {
3232 this . props . onLoad ( )
3333 }
3434
35- componentWillReceiveProps = ( nextProps ) => {
35+ UnsafeComponentWillReceiveProps = ( nextProps ) => {
3636 if ( this . props . projects !== nextProps . projects ) {
3737 this . setState ( { filteredProjects : nextProps . projects } )
3838 }
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default function (BaseComponent) {
1212 this . checkAuthentication ( this . props )
1313 }
1414
15- componentWillReceiveProps ( nextProps ) {
15+ UnsafeComponentWillReceiveProps ( nextProps ) {
1616 if ( nextProps . location !== this . props . location ) {
1717 this . checkAuthentication ( nextProps )
1818 }
You can’t perform that action at this time.
0 commit comments