diff --git a/apps/client/src/widgets/layout/StatusBar.tsx b/apps/client/src/widgets/layout/StatusBar.tsx index 432462b29..1582fa67d 100644 --- a/apps/client/src/widgets/layout/StatusBar.tsx +++ b/apps/client/src/widgets/layout/StatusBar.tsx @@ -332,13 +332,14 @@ function AttributesPane({ note, noteContext, attributesShown, setAttributesShown //#region Note paths function NotePaths({ note, hoistedNoteId, notePath }: StatusBarContext) { const sortedNotePaths = useSortedNotePaths(note, hoistedNoteId); + const count = sortedNotePaths?.length ?? 0; - return ( + return (count > 1 &&