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
So as it stands all reducers related to all rows are pulled in and 'switched' based on a props type. This will cause n*n hooking up to the reducer and dynamic recomputing of all CardRows anytime any one of them changes.
We want to associate each CardRow with its appropriate reducer only, such that only it will recompute when its specific reducer is updated, and no other.
The text was updated successfully, but these errors were encountered:
So as it stands all reducers related to all rows are pulled in and 'switched' based on a props type. This will cause n*n hooking up to the reducer and dynamic recomputing of all CardRows anytime any one of them changes.
We want to associate each CardRow with its appropriate reducer only, such that only it will recompute when its specific reducer is updated, and no other.
The text was updated successfully, but these errors were encountered: