From 5973e5ca26fe350d411bdc7801e68aa9be1c9d6c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 9 Dec 2025 07:45:38 +0200 Subject: [PATCH] chore(ribbon): remove label for the root entirely --- apps/client/src/widgets/Breadcrumb.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/Breadcrumb.tsx b/apps/client/src/widgets/Breadcrumb.tsx index 29d5cc7f0..0c08cf160 100644 --- a/apps/client/src/widgets/Breadcrumb.tsx +++ b/apps/client/src/widgets/Breadcrumb.tsx @@ -26,7 +26,7 @@ export default function Breadcrumb() { <> {notePath.slice(0, INITIAL_ITEMS).map((item, index) => ( - {index === 0 && notePath.length > 1 + {index === 0 ? : } @@ -44,7 +44,7 @@ export default function Breadcrumb() { ) : ( notePath.map((item, index) => ( - {index === 0 && notePath.length > 1 + {index === 0 ? : }