Skip to content

Commit

Permalink
refactor: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Razboy20 authored Mar 14, 2024
1 parent baaf97a commit a9f1d95
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/views/components/common/List/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ function List<T>(props: ListProps<T>): JSX.Element {
props.draggables.length === items.length &&
props.draggables.every((element, index) => equalityCheck(element, items[index].content))
) {
console.log("List's draggables have not changed");
return;
}
setItems(wrap(props.draggables));
Expand Down

0 comments on commit a9f1d95

Please sign in to comment.