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
If I understand correctly than cache store's key is constructed using JSON.stringify and hashing. However JSON.stringify does not handle function properties.
The problem is that I want to use a simple strategy with most of my dumb components, however I cannot just disregard function props, as the uniqueness of props combination is not guaranteed then.
What do you suggest? I can only think of using a custom genCacheKey function...
The text was updated successfully, but these errors were encountered:
Hello! Thanks for this awesome library
If I understand correctly than cache store's key is constructed using
JSON.stringify
and hashing. HoweverJSON.stringify
does not handle function properties.The problem is that I want to use a simple strategy with most of my dumb components, however I cannot just disregard function props, as the uniqueness of props combination is not guaranteed then.
What do you suggest? I can only think of using a custom genCacheKey function...
The text was updated successfully, but these errors were encountered: