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
And the app works well for now, maybe it's related to the cloneDeep of this library when the state grow.
This library should use pick and omit from lodash, as this two functions are working with path and avoid cloning state !
The text was updated successfully, but these errors were encountered:
I was using this library to blacklist a part of my reducer state.
This lead in big performances issues, using a simple blacklist filter like this one:
With this filter, app became really slow ! The amount of datas is equivalent to 33kb.
So I use this custom filter that is doing the same:
And the app works well for now, maybe it's related to the
cloneDeep
of this library when the state grow.This library should use
pick
andomit
from lodash, as this two functions are working with path and avoid cloning state !The text was updated successfully, but these errors were encountered: