edy / redux-persist-transform-filter

Filter transformator for redux-persist
MIT License
190 stars 21 forks source link

Cannot blacklist a property under dynamically created key #37

Open yunusyuksel opened 1 year ago

yunusyuksel commented 1 year ago

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; };