From d2b44cb7d28baed6e991b2a5a05bdac6a919804b Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Sat, 3 Feb 2024 13:39:45 -0800 Subject: [PATCH] Remove console log --- src-web/components/Sidebar.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src-web/components/Sidebar.tsx b/src-web/components/Sidebar.tsx index 6cf1f13a..e49549b5 100644 --- a/src-web/components/Sidebar.tsx +++ b/src-web/components/Sidebar.tsx @@ -121,7 +121,6 @@ export function Sidebar({ className }: Props) { childItems.sort((a, b) => a.sortPriority - b.sortPriority); const depth = node.depth + 1; for (const item of childItems) { - console.log('ADD ITEM', item.id, item); treeParentMap[item.id] = node; node.children.push(next({ item, children: [], depth })); if (item.model !== 'folder') {