From e2b8ec5161f09d0eed2baf15a3897add4c7eef6d Mon Sep 17 00:00:00 2001 From: huangzhuang_3rd Date: Thu, 13 Aug 2026 18:20:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20DAG=E5=8F=AF=E8=A7=86=E5=8C=96=E7=BC=96?= =?UTF-8?q?=E6=8E=92=E7=94=BB=E5=B8=83=20-=20=E5=9B=BE=E6=9F=A5=E8=AF=A2/?= =?UTF-8?q?=E4=BE=9D=E8=B5=96=E5=A2=9E=E5=88=A0=E6=8E=A5=E5=8F=A3=20+=20Re?= =?UTF-8?q?act=20Flow=E7=94=BB=E5=B8=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index f57d780..e21f8dd 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -12,6 +12,7 @@ import Workers from '@/pages/Workers'; import Reviews from '@/pages/Reviews'; import Alerts from '@/pages/Alerts'; import KnowledgeBase from '@/pages/KnowledgeBase'; +import DagCanvas from '@/pages/DagCanvas'; function ProtectedRoute({ children }: { children: React.ReactNode }) { const { isAuthenticated } = useAuthStore(); @@ -61,6 +62,7 @@ export default function App() { } /> } /> } /> + } /> } />