@tanstack/react-query-devtools 4.13.4 → 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 +3 -3
- package/src/devtools.tsx +82 -80
package/build/lib/index.prod.js
CHANGED
|
@@ -1301,7 +1301,7 @@ const QueryStatusCount = ({
|
|
|
1301
1301
|
}, "inactive ", /*#__PURE__*/React__namespace.createElement(Code, null, "(", hasInactive, ")")));
|
|
1302
1302
|
};
|
|
1303
1303
|
|
|
1304
|
-
const QueryRow = ({
|
|
1304
|
+
const QueryRow = /*#__PURE__*/React__namespace.memo(({
|
|
1305
1305
|
queryKey,
|
|
1306
1306
|
setActiveQueryHash,
|
|
1307
1307
|
activeQueryHash,
|
|
@@ -1382,8 +1382,7 @@ const QueryRow = ({
|
|
|
1382
1382
|
padding: '.5em'
|
|
1383
1383
|
}
|
|
1384
1384
|
}, "" + queryHash));
|
|
1385
|
-
}; // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1386
|
-
|
|
1385
|
+
}); // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1387
1386
|
|
|
1388
1387
|
function noop() {}
|
|
1389
1388
|
|