From 6e0aa305d10fb16e905ba7130521c22d095cbf48 Mon Sep 17 00:00:00 2001 From: Li Xin Date: Wed, 30 Apr 2025 09:45:37 +0800 Subject: [PATCH] feat: animate edges after the introduction has been done --- web/src/app/_components/multi-agent-visualization.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app/_components/multi-agent-visualization.tsx b/web/src/app/_components/multi-agent-visualization.tsx index d8cf1b2..def8074 100644 --- a/web/src/app/_components/multi-agent-visualization.tsx +++ b/web/src/app/_components/multi-agent-visualization.tsx @@ -276,7 +276,7 @@ function useWorkflowRun( setEdges((edges) => { return edges.map((edge) => ({ ...edge, - animated: false, + animated: true, })); });