diff --git a/apps/client/src/widgets/Breadcrumb.tsx b/apps/client/src/widgets/Breadcrumb.tsx index 632d2c971..8f09fdd2b 100644 --- a/apps/client/src/widgets/Breadcrumb.tsx +++ b/apps/client/src/widgets/Breadcrumb.tsx @@ -64,8 +64,11 @@ function BreadcrumbSeparatorDropdownContent({ notePath, noteContext, activeNoteP noteContext?.setNote(childNotePath)} - checked={childNotePath === activeNotePath} - >{note.title} + > + {childNotePath !== activeNotePath + ? note.title + : {note.title}} + })}