Skip to content

Commit 8b9bc47

Browse files
committed
Fix formatting in RelationshipNode
1 parent 272a632 commit 8b9bc47

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/components/visualizer/RelationshipNode.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,17 @@ export function RelationshipNode({ data, selected }: NodeProps<RelationshipNodeT
2929
justifyContent: "center",
3030
}}
3131
>
32-
<Handle type="source" position={Position.Top} className="!w-0 !h-0 !border-0 !bg-transparent" />
32+
<Handle
33+
type="source"
34+
position={Position.Top}
35+
className="!w-0 !h-0 !border-0 !bg-transparent"
36+
/>
3337
<div className="text-center font-medium text-sm break-all">{data.label}</div>
34-
<Handle type="target" position={Position.Bottom} className="!w-0 !h-0 !border-0 !bg-transparent" />
38+
<Handle
39+
type="target"
40+
position={Position.Bottom}
41+
className="!w-0 !h-0 !border-0 !bg-transparent"
42+
/>
3543
</div>
3644
);
3745
}

0 commit comments

Comments
 (0)