@trackunit/filters-graphql-hook 0.0.214 → 0.0.216
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/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -348,7 +348,7 @@ const useActiveAssetFilters = (filters) => {
|
|
|
348
348
|
};
|
|
349
349
|
const isBoundingBox = (value) => {
|
|
350
350
|
return value
|
|
351
|
-
? // eslint-disable-next-line local-rules/prefer-custom-object-keys
|
|
351
|
+
? // eslint-disable-next-line no-autofix/local-rules/prefer-custom-object-keys
|
|
352
352
|
typeof value === "object" && Object.keys(value).includes("nw") && Object.keys(value).includes("se")
|
|
353
353
|
: false;
|
|
354
354
|
};
|
package/index.esm.js
CHANGED
|
@@ -344,7 +344,7 @@ const useActiveAssetFilters = (filters) => {
|
|
|
344
344
|
};
|
|
345
345
|
const isBoundingBox = (value) => {
|
|
346
346
|
return value
|
|
347
|
-
? // eslint-disable-next-line local-rules/prefer-custom-object-keys
|
|
347
|
+
? // eslint-disable-next-line no-autofix/local-rules/prefer-custom-object-keys
|
|
348
348
|
typeof value === "object" && Object.keys(value).includes("nw") && Object.keys(value).includes("se")
|
|
349
349
|
: false;
|
|
350
350
|
};
|