diff --git a/src/views/components/common/List.tsx b/src/views/components/common/List.tsx index a37b00e4..3f003b19 100644 --- a/src/views/components/common/List.tsx +++ b/src/views/components/common/List.tsx @@ -78,13 +78,6 @@ function List({ draggables, itemKey, children, onReordered, gap }: ListProps< const transformFunction = children; useEffect(() => { - // check if the draggables content has *actually* changed - if ( - draggables.length === items.length && - draggables.every((element, index) => itemKey(element) === items[index]?.id) - ) { - return; - } setItems(wrap(draggables, itemKey)); }, [draggables]);