dnd-kit icon indicating copy to clipboard operation
dnd-kit copied to clipboard

`items` prop of SortableContext should be ReadonlyArray

Open wand2016 opened this issue 1 year ago • 0 comments

https://github.com/clauderic/dnd-kit/blob/694dcc2f62e5269541fc941fa6c9af46ccd682ad/packages/sortable/src/components/SortableContext.tsx#L11

In order to pass immutable array data, items prop should be:

ReadonlyArray<UniqueIdentifier | {
  id: UniqueIdentifier;
}>;

wand2016 avatar May 10 '24 02:05 wand2016