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
Modified to subscribe to state using multiple keys as an array
Added ability to subscribe to all states when no key is passed
ContextQueryProvider Initial Value Removal
Removed initial value from ContextQueryProvider
Initialization is now passed as an argument to the createContextQuery function
When initializing or changing state outside ContextQueryProvider, use store's updateState, setState (Refer to example code in Readme file)
Rendering Optimization
Changed to avoid passing values via props to ContextQueryProvider, eliminating unnecessary re-renders and improving render accuracy only when state is updated
Refactoring
Removed unnecessary SubscriptionProvider
Bug Fix
Changed Store's state type from Record<string, unknown> to Record<string, any>