redux-astroglide 0.1.10 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -239,7 +239,7 @@ const slice = createSlice("Login", {
239
239
  // Nav/slice.js
240
240
  const slice = createSlice("Nav", {
241
241
  isOpen: persist("", {
242
- storageType: localStorage, // default localStorage, must match localStorage API
242
+ storageType: localStorage, // default localStorage, must provide { getItem(key):any, setItem(key, value):void } API (async not allowed)
243
243
  }),
244
244
  clickCount: set((value) => value + 1),
245
245
  });