diff --git a/src/components/NoteList.tsx b/src/components/NoteList.tsx index a6a8d4c9..259968b4 100644 --- a/src/components/NoteList.tsx +++ b/src/components/NoteList.tsx @@ -172,7 +172,7 @@ function buildRelationshipGroups( // 5. All other generic relationship fields (alphabetically) const handledKeys = new Set(['Has', 'Topics']) const otherKeys = Object.keys(rels) - .filter((k) => !handledKeys.has(k)) + .filter((k) => !handledKeys.has(k) && k.toLowerCase() !== 'type') .sort((a, b) => a.localeCompare(b)) for (const key of otherKeys) { const refs = rels[key]