@gem-sdk/pages 1.9.33 → 1.9.35

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.
@@ -28,7 +28,9 @@ const Toolbox = ()=>{
28
28
  const clearModal = core.useModalStore((s)=>s.clearModal);
29
29
  // Revalidate all query with key match query/
30
30
  const onRevalidateQuery = react.useCallback(()=>{
31
- matchMutate(/query\//);
31
+ matchMutate(/query\//, {
32
+ revalidate: true
33
+ });
32
34
  }, [
33
35
  matchMutate
34
36
  ]);
@@ -24,7 +24,9 @@ const Toolbox = ()=>{
24
24
  const clearModal = useModalStore((s)=>s.clearModal);
25
25
  // Revalidate all query with key match query/
26
26
  const onRevalidateQuery = useCallback(()=>{
27
- matchMutate(/query\//);
27
+ matchMutate(/query\//, {
28
+ revalidate: true
29
+ });
28
30
  }, [
29
31
  matchMutate
30
32
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/pages",
3
- "version": "1.9.33",
3
+ "version": "1.9.35",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",