redux-persist-transform-filter icon indicating copy to clipboard operation
redux-persist-transform-filter copied to clipboard

Cannot blacklist a property under dynamically created key

Open yunusyuksel opened this issue 3 years ago • 0 comments

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

yunusyuksel avatar Oct 31 '22 10:10 yunusyuksel