We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e593a0b commit 42ae08eCopy full SHA for 42ae08e
src/ui-react-inspector/common.ts
@@ -23,7 +23,7 @@ export const getUniqueId = (...args: (Id | undefined)[]) =>
23
export const sortedIdsMap = <Return>(
24
ids: Ids,
25
callback: (id: Id) => Return,
26
-): Return[] => arrayMap(arraySort(ids), callback);
+): Return[] => arrayMap(arraySort([...ids]), callback);
27
28
export const useEditable = (
29
uniqueId: Id,
0 commit comments