From 65f4334a56b39dff7b71285de709f429a0484f42 Mon Sep 17 00:00:00 2001 From: Trang Doan Date: Mon, 23 Feb 2026 14:53:46 -0500 Subject: [PATCH] remove redundant info --- .../src/components/RelationshipSettings.tsx | 35 ------------------- 1 file changed, 35 deletions(-) diff --git a/apps/obsidian/src/components/RelationshipSettings.tsx b/apps/obsidian/src/components/RelationshipSettings.tsx index 3e37cfc6d..39418ecea 100644 --- a/apps/obsidian/src/components/RelationshipSettings.tsx +++ b/apps/obsidian/src/components/RelationshipSettings.tsx @@ -205,41 +205,6 @@ const RelationshipSettings = () => { Delete - - {relation.sourceId && - relation.relationshipTypeId && - relation.destinationId && ( -
-
-
- {getNodeTypeById(plugin, relation.sourceId)?.name || - "Unknown Node"} -
- -
-
-
- {findRelationTypeById(relation.relationshipTypeId) - ?.label || "Unknown Relation"} -
-
-
-
- ←{" "} - - {findRelationTypeById(relation.relationshipTypeId) - ?.complement || "Unknown Complement"} - -
-
- -
- {getNodeTypeById(plugin, relation.destinationId) - ?.name || "Unknown Node"} -
-
-
- )} ))}