diff --git a/desktop/plugins/public/ui-debugger/components/Controls.tsx b/desktop/plugins/public/ui-debugger/components/Controls.tsx index ab48b944e..fa1824dee 100644 --- a/desktop/plugins/public/ui-debugger/components/Controls.tsx +++ b/desktop/plugins/public/ui-debugger/components/Controls.tsx @@ -212,7 +212,6 @@ type TreeSelectNode = { function getAllLeaves(treeSelectNode: TreeSelectNode) { const result: string[] = []; function getAllLeavesRec(node: TreeSelectNode) { - console.log(node); if (node.children.length > 0) { for (const child of node.children) { getAllLeavesRec(child);