From 0eba468825de16207711d359cd4b0192dc283c9e Mon Sep 17 00:00:00 2001 From: Chloe Date: Mon, 6 May 2024 17:13:43 +0700 Subject: [PATCH] fix: remove console log Signed-off-by: Chloe --- components/breadcrumb/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/breadcrumb/index.tsx b/components/breadcrumb/index.tsx index 08f0c90e5..96440a6a2 100644 --- a/components/breadcrumb/index.tsx +++ b/components/breadcrumb/index.tsx @@ -20,7 +20,6 @@ const findParentCollection = (menu: Menu[], collection: string): Menu | null => for (const item of menu) { if (item.items.length) { - console.log({ collection, item }); const hasParent = item.items.some((subItem) => subItem.path.includes(collection)); if (hasParent) { parentCollection = item;