Remove console logs for events

Summary:
May be a debugging left-over, remove.

https://pxl.cl/2B9bg

Reviewed By: LukeDefeo

Differential Revision: D44630930

fbshipit-source-id: a585a54f807259d50b38fc62df21c30cefcb6510
This commit is contained in:
Lorenzo Blasa
2023-04-04 03:55:44 -07:00
committed by Facebook GitHub Bot
parent f210ec809f
commit d127ac76ac

View File

@@ -212,7 +212,6 @@ type TreeSelectNode = {
function getAllLeaves(treeSelectNode: TreeSelectNode) { function getAllLeaves(treeSelectNode: TreeSelectNode) {
const result: string[] = []; const result: string[] = [];
function getAllLeavesRec(node: TreeSelectNode) { function getAllLeavesRec(node: TreeSelectNode) {
console.log(node);
if (node.children.length > 0) { if (node.children.length > 0) {
for (const child of node.children) { for (const child of node.children) {
getAllLeavesRec(child); getAllLeavesRec(child);