Fix binding

This commit is contained in:
Mark Tolmacs 2025-06-19 14:37:25 +02:00
parent c3d40c3781
commit 5d16a81327
No known key found for this signature in database

View File

@ -415,14 +415,7 @@ export const maybeSuggestBindingsForLinearElementAtCoords = (
isElbowArrow(linearElement),
);
if (
hoveredBindableElement != null &&
!isLinearElementSimpleAndAlreadyBound(
linearElement,
oppositeBindingBoundElement?.id,
hoveredBindableElement,
)
) {
if (hoveredBindableElement != null) {
acc.add(hoveredBindableElement);
}