@@ -282,7 +282,7 @@ function commitBeforeMutationLifeCycles(
282
282
'Expected %s state to match memoized state before ' +
283
283
'getSnapshotBeforeUpdate. ' +
284
284
'This might either be because of a bug in React, or because ' +
285
- 'a component reassigns its own `this.props `. ' +
285
+ 'a component reassigns its own `this.state `. ' +
286
286
'Please file an issue.' ,
287
287
getComponentName ( finishedWork . type ) || 'instance' ,
288
288
) ;
@@ -490,7 +490,7 @@ function commitLifeCycles(
490
490
'Expected %s state to match memoized state before ' +
491
491
'componentDidMount. ' +
492
492
'This might either be because of a bug in React, or because ' +
493
- 'a component reassigns its own `this.props `. ' +
493
+ 'a component reassigns its own `this.state `. ' +
494
494
'Please file an issue.' ,
495
495
getComponentName ( finishedWork . type ) || 'instance' ,
496
496
) ;
@@ -529,7 +529,7 @@ function commitLifeCycles(
529
529
'Expected %s state to match memoized state before ' +
530
530
'componentDidUpdate. ' +
531
531
'This might either be because of a bug in React, or because ' +
532
- 'a component reassigns its own `this.props `. ' +
532
+ 'a component reassigns its own `this.state `. ' +
533
533
'Please file an issue.' ,
534
534
getComponentName ( finishedWork . type ) || 'instance' ,
535
535
) ;
@@ -566,7 +566,7 @@ function commitLifeCycles(
566
566
'Expected %s state to match memoized state before ' +
567
567
'processing the update queue. ' +
568
568
'This might either be because of a bug in React, or because ' +
569
- 'a component reassigns its own `this.props `. ' +
569
+ 'a component reassigns its own `this.state `. ' +
570
570
'Please file an issue.' ,
571
571
getComponentName ( finishedWork . type ) || 'instance' ,
572
572
) ;
0 commit comments