@cascateer/core 2.4.32 → 2.4.33

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/store.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cascateer/core",
3
- "version": "2.4.32",
3
+ "version": "2.4.33",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/cascateer/core.git"
package/src/store.ts CHANGED
@@ -240,7 +240,7 @@ export class StoreProvider<Data> extends ExtendableStoreAdapter<
240
240
  },
241
241
  (action) => {
242
242
  if (action.type === "seedAction") {
243
- return tap(action, console.log).predicate();
243
+ return action.predicate();
244
244
  }
245
245
 
246
246
  throw new Error();