You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Summary
I am writing code that isn't so good, so I saw this error message many
times. It appears to have a typo. This PR fixes the typo.
## How did you test this change?
Ran the tests
DiffTrain build for [3e9db65](3e9db65)
Copy file name to clipboardExpand all lines: compiled/facebook-www/ReactART-dev.classic.js
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -16150,7 +16150,7 @@ __DEV__ &&
16150
16150
} else didWarnStateUpdateForNotYetMountedComponent = new Set([tag]);
16151
16151
runWithFiberInDEV(fiber, function () {
16152
16152
console.error(
16153
-
"Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously later calls tries to update the component. Move this work to useEffect instead."
16153
+
"Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously tries to update the component. Move this work to useEffect instead."
Copy file name to clipboardExpand all lines: compiled/facebook-www/ReactART-dev.modern.js
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -15964,7 +15964,7 @@ __DEV__ &&
15964
15964
} else didWarnStateUpdateForNotYetMountedComponent = new Set([tag]);
15965
15965
runWithFiberInDEV(fiber, function () {
15966
15966
console.error(
15967
-
"Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously later calls tries to update the component. Move this work to useEffect instead."
15967
+
"Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously tries to update the component. Move this work to useEffect instead."
0 commit comments