Skip to content

Commit a706552

Browse files
committed
remove console logs
1 parent ca0dee6 commit a706552

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

app/cdap/components/StudioV2/components/DAGEditor/useDAGController.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ export function useDAGController(
7676
const handleNodesChange = useCallback(
7777
(changes) => {
7878
onNodesChange(changes);
79-
// console.log(changes);
8079
for (const change of changes) {
8180
if (change.type === 'position' && change.dragging === false) {
8281
const node = getNodeById(change.id);
@@ -98,10 +97,7 @@ export function useDAGController(
9897
);
9998

10099
const handleEdgesChange = useCallback((changes) => {
101-
// onEdgesChange(changes);
102-
// console.log('EDGES CHANGE: ', changes);
103-
// for (const change of changes) {
104-
// }
100+
// pass
105101
}, []);
106102

107103
const populateEdge = useCallback(

0 commit comments

Comments
 (0)