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

View file

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