@overmap-ai/core 1.0.60-forms-removal.2 → 1.0.60-forms-removal.3
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/dist/overmap-core.js
CHANGED
|
@@ -17,7 +17,6 @@ import { saveAs } from "file-saver";
|
|
|
17
17
|
import React, { useRef, useEffect } from "react";
|
|
18
18
|
import ColorCls from "color";
|
|
19
19
|
import { gray, gold, brown, yellow, amber, orange, red, crimson, pink, plum, purple, violet, iris, indigo, blue, cyan, jade, grass, lime, mint, sky } from "@radix-ui/colors";
|
|
20
|
-
import { shallowEqual as shallowEqual$1 } from "react-redux";
|
|
21
20
|
import { RESET_STATE } from "@redux-offline/redux-offline/lib/constants";
|
|
22
21
|
import jwtDecode from "jwt-decode";
|
|
23
22
|
import { unsafeShowToast } from "@overmap-ai/blocks";
|
|
@@ -2657,7 +2656,7 @@ const selectFilteredForms = restructureCreateSelectorWithArgs(
|
|
|
2657
2656
|
return [...favoriteMatches, ...regularMatches.slice(0, maxRegularMatches)];
|
|
2658
2657
|
},
|
|
2659
2658
|
// as the argument is an object, we check the first level of properties for equality
|
|
2660
|
-
{ memoizeOptions: { equalityCheck: shallowEqual
|
|
2659
|
+
{ memoizeOptions: { equalityCheck: shallowEqual } }
|
|
2661
2660
|
)
|
|
2662
2661
|
);
|
|
2663
2662
|
const selectForm = (formId) => (state) => {
|