redux-persist-transform-filter
redux-persist-transform-filter copied to clipboard
Cannot blacklist a property under dynamically created key
Here are my example types of properties that are stored in Redux. I can not blacklist a property (the name is blacklistProperty in that example) under a dynamically created key (UUID)
type EntitiesSlice = { entities: {[id: string]: EntityState} };
type EntityState = { id: string; persistProperty: string; blacklistProperty: string; };