feat(editor): Remove edge execution animation on new canvas (#11446)

This commit is contained in:
Alex Grozav 2024-10-29 13:39:45 +02:00 committed by GitHub
parent 4e3681b905
commit a701d87f5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 4 deletions

View file

@ -743,7 +743,6 @@ describe('useCanvasMapping', () => {
target, target,
targetHandle, targetHandle,
type: 'canvas-edge', type: 'canvas-edge',
animated: false,
}, },
]); ]);
}); });
@ -832,7 +831,6 @@ describe('useCanvasMapping', () => {
target: targetA, target: targetA,
targetHandle: targetHandleA, targetHandle: targetHandleA,
type: 'canvas-edge', type: 'canvas-edge',
animated: false,
}, },
{ {
data: { data: {
@ -855,7 +853,6 @@ describe('useCanvasMapping', () => {
targetHandle: targetHandleB, targetHandle: targetHandleB,
type: 'canvas-edge', type: 'canvas-edge',
markerEnd: MarkerType.ArrowClosed, markerEnd: MarkerType.ArrowClosed,
animated: false,
}, },
]); ]);
}); });

View file

@ -507,7 +507,6 @@ export function useCanvasMapping({
data, data,
type, type,
label, label,
animated: data.status === 'running',
markerEnd: MarkerType.ArrowClosed, markerEnd: MarkerType.ArrowClosed,
}; };
}, },