-
Notifications
You must be signed in to change notification settings - Fork 1k
Description
I would like to hide some type of actions in Redux DevTools history. In the documentation I've found an information about actionsBlacklist
option, which I am passing to
window.__REDUX_DEVTOOLS_EXTENSION__(...)
This has some effect, i.e. I no longer see the blacklisted actions, but behind the scenes they still contribute to the history length, so instead of seeing the history of default length (50) I can only see a couple of most recent actions that has not yet been pushed back but the blacklisted ones.
Looks like increasing the history length, which as far as I understand is controlled by the maxAge
option, helps a bit but it feels like a workaround rather than a real solution.
I am wondering if there's a better way to fix this behavior which I described above and if it's even intended or just a BUG?