Skip to content

Commit

Permalink
Remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
haecheonlee committed Apr 17, 2024
1 parent 8f659eb commit 0347dbf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/EditorSidePanel/TablesTab/TableInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export default function TableInfo({ data }) {
const [editField, setEditField] = useState({});
const draggingElementIndex = useRef();
const isDragging = useRef();
console.log(isDragging.current);

return (
<div>
Expand Down Expand Up @@ -63,7 +62,6 @@ export default function TableInfo({ data }) {
onDragOver={(e) => {
e.preventDefault();
if (isDragging.current) return;
console.log("dragging over...");
isDragging.current = true;
draggingElementIndex.current = j;
}}
Expand Down

0 comments on commit 0347dbf

Please sign in to comment.