@absolutejs/absolute 0.19.0-beta.335 → 0.19.0-beta.336

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.
@@ -39749,13 +39749,13 @@ var initializeIslandStores = (state) => {
39749
39749
  applySnapshot(store, nextSnapshot[storeId]);
39750
39750
  }
39751
39751
  };
39752
- var createIslandStore = (storeId, createState) => {
39752
+ var createIslandStore = (storeId) => (createState) => {
39753
39753
  const stores = getIslandStores();
39754
39754
  const existingStore = stores.get(storeId);
39755
39755
  if (existingStore) {
39756
39756
  return existingStore;
39757
39757
  }
39758
- const store = createStore()((set, get, store2) => createState(set, get, store2));
39758
+ const store = createStore()(createState);
39759
39759
  const initialSnapshot = getIslandStoreSnapshot()[storeId];
39760
39760
  applySnapshot(store, initialSnapshot);
39761
39761
  getIslandStoreSnapshot()[storeId] = toSerializableState(store.getState());
@@ -39809,5 +39809,5 @@ export {
39809
39809
  Island
39810
39810
  };
39811
39811
 
39812
- //# debugId=B0FB1CC27CD5699E64756E2164756E21
39812
+ //# debugId=B0FCCDB646127B3764756E2164756E21
39813
39813
  //# sourceMappingURL=index.js.map