@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
|
@@ -3227,7 +3227,7 @@
|
|
|
3227
3227
|
}, "inactive ", /*#__PURE__*/React__namespace.createElement(Code, null, "(", hasInactive, ")")));
|
|
3228
3228
|
};
|
|
3229
3229
|
|
|
3230
|
-
const QueryRow = ({
|
|
3230
|
+
const QueryRow = /*#__PURE__*/React__namespace.memo(({
|
|
3231
3231
|
queryKey,
|
|
3232
3232
|
setActiveQueryHash,
|
|
3233
3233
|
activeQueryHash,
|
|
@@ -3308,8 +3308,7 @@
|
|
|
3308
3308
|
padding: '.5em'
|
|
3309
3309
|
}
|
|
3310
3310
|
}, "" + queryHash));
|
|
3311
|
-
}; // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
3312
|
-
|
|
3311
|
+
}); // eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
3313
3312
|
|
|
3314
3313
|
function noop() {}
|
|
3315
3314
|
|