diff --git a/components/Form/Selects.tsx b/components/Form/Selects.tsx index 08f20b7..183d6fc 100644 --- a/components/Form/Selects.tsx +++ b/components/Form/Selects.tsx @@ -33,12 +33,7 @@ const SortableSelect = SortableContainer(ReactSelect) const Select = ({ placeholder, options, values, setValues, handleChange, handleTouch }:SelectProps):JSX.Element => { const onSortEnd = ({ oldIndex, newIndex }) => { const newValue = arrayMove(values, oldIndex, newIndex) - console.log(newValue) setValues(newValue) - console.log( - 'Values sorted:', - newValue.map(i => i.value) - ) } return node.getBoundingClientRect()} onSortEnd={onSortEnd} // select props