You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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; };
The text was updated successfully, but these errors were encountered:
yunusyuksel
changed the title
Do not persist a property under dynamically created key
Cannot blacklist a property under dynamically created key
Oct 31, 2022
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; };
The text was updated successfully, but these errors were encountered: