-
Notifications
You must be signed in to change notification settings - Fork 14.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Removes Redux state mutations - iteration 3 #23637
fix: Removes Redux state mutations - iteration 3 #23637
Conversation
@justinpark I tested all major workflows with the results of this and previous iterations and I was not able to generate immutability errors. There are many errors related to non-serializable objects being stored in Redux like BigNumbers and functions but these only generate warnings and don't block your PR. We can fix them in follow-ups. |
Codecov Report
@@ Coverage Diff @@
## master #23637 +/- ##
==========================================
+ Coverage 67.71% 67.94% +0.22%
==========================================
Files 1918 1918
Lines 74157 73882 -275
Branches 8053 8054 +1
==========================================
- Hits 50219 50198 -21
+ Misses 21885 21631 -254
Partials 2053 2053
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 3 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
SUMMARY
This iteration removes Redux state mutations from the codebase to allow us to merge #23460 without disrupting the development workflow.
TESTING INSTRUCTIONS
1 - Pull changes from #23460 to enable the immutabilityMiddleware
2 - Add or remove a native filter
3 - You shouldn't see any errors related to state mutation
ADDITIONAL INFORMATION