-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some state action dispatchers in class components would refer to `this.state` property when given a function as the action argument. Since React 18 automatically batches state updates, calling such broken dispatcher after another dispatch in the same render might discard the changes performed by the earlier dispatcher because `this.state` would contain the state before the render started. Let’s pass a function to `this.setState` and use the state argument provided by the dispatch to always get the freshest state. Fixes: #1454
- Loading branch information
Showing
2 changed files
with
90 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters