miolo-react 3.0.0-beta.192 → 3.0.0-beta.193

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miolo-react",
3
- "version": "3.0.0-beta.192",
3
+ "version": "3.0.0-beta.193",
4
4
  "description": "React utils for miolo",
5
5
  "author": "Donato Lorenzo <donato@afialapis.com>",
6
6
  "contributors": [
@@ -5,7 +5,7 @@ import usePropsCheck from "./usePropsCheck.mjs"
5
5
  const makeSerializable = (obj) => {
6
6
  try {
7
7
  return JSON.parse(JSON.stringify(obj))
8
- } catch (e) {
8
+ } catch (_) {
9
9
  return obj
10
10
  }
11
11
  }
@@ -20,7 +20,7 @@ const useSsrDataOrReload = (context, miolo, name, options) => {
20
20
  modifier = undefined,
21
21
  effect = undefined,
22
22
  model = undefined,
23
- cache = true,
23
+ cache = false,
24
24
  ttl = undefined
25
25
  } = options
26
26