@tanstack/react-query-devtools 4.13.5 → 4.13.6
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/build/lib/devtools.esm.js +2 -3
- package/build/lib/devtools.esm.js.map +1 -1
- package/build/lib/devtools.js +2 -3
- package/build/lib/devtools.js.map +1 -1
- package/build/lib/devtools.mjs +2 -3
- package/build/lib/devtools.mjs.map +1 -1
- package/build/lib/index.prod.esm.js +2 -3
- package/build/lib/index.prod.esm.js.map +1 -1
- package/build/lib/index.prod.js +2 -3
- package/build/lib/index.prod.js.map +1 -1
- package/build/lib/index.prod.mjs +2 -3
- package/build/lib/index.prod.mjs.map +1 -1
- package/build/umd/index.development.js +2 -3
- package/build/umd/index.development.js.map +1 -1
- package/package.json +1 -1
- package/src/devtools.tsx +82 -80
package/build/lib/index.prod.mjs
CHANGED
|
@@ -1274,7 +1274,7 @@ const QueryStatusCount = ({
|
|
|
1274
1274
|
}, "inactive ", /*#__PURE__*/React.createElement(Code, null, "(", hasInactive, ")")));
|
|
1275
1275
|
};
|
|
1276
1276
|
|
|
1277
|
-
const QueryRow = ({
|
|
1277
|
+
const QueryRow = /*#__PURE__*/React.memo(({
|
|
1278
1278
|
queryKey,
|
|
1279
1279
|
setActiveQueryHash,
|
|
1280
1280
|
activeQueryHash,
|
|
@@ -1355,8 +1355,7 @@ const QueryRow = ({
|
|
|
1355
1355
|
padding: '.5em'
|
|
1356
1356
|
}
|
|
1357
1357
|
}, "" + queryHash));
|
|
1358
|
-
}; // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1359
|
-
|
|
1358
|
+
}); // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1360
1359
|
|
|
1361
1360
|
function noop() {}
|
|
1362
1361
|
|