Hello I would like not display one of my actions in extension Redux DevTools. I thought I could do it with property actionBlocklist but when I wrote this:
StoreDevtoolsModule.instrument({
maxAge: 25,
logOnly: environment.production,
actionsBlocklist: ['[ACTION] NAME_OF_ACTION'] }),
nothing is change. I'm sure that name of action is same as name from redux. Maybe I misunderstanding concept of this property.