Remove console log

This commit is contained in:
Gregory Schier
2024-02-03 13:39:45 -08:00
parent 1c7bdb346a
commit d2b44cb7d2

View File

@@ -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') {