From 0f25d32d410038314af77a8f8c96931110184b83 Mon Sep 17 00:00:00 2001 From: Junseo Park Date: Thu, 18 Feb 2021 13:50:48 +0900 Subject: [PATCH] chore: removed debug code --- components/Form/Selects.tsx | 5 ----- 1 file changed, 5 deletions(-) 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