From 8c3b8d514aa508a9cfd09f6105364c06761c694c Mon Sep 17 00:00:00 2001 From: huangzhuang_3rd Date: Thu, 13 Aug 2026 11:26:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8E=A5=E5=85=A5=E5=89=8D=E7=AB=AFV1?= =?UTF-8?q?=E8=B7=AF=E7=94=B1+=E8=8F=9C=E5=8D=95,=20=E6=9B=B4=E6=96=B0LLM?= =?UTF-8?q?=E7=BD=91=E5=85=B3=E9=85=8D=E7=BD=AE(DeepSeek+QwenVL)=E5=8F=8A?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E5=AE=9A=E4=BB=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index bad5b74..f57d780 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -10,6 +10,8 @@ import ProjectDetail from '@/pages/ProjectDetail'; import Tasks from '@/pages/Tasks'; import Workers from '@/pages/Workers'; import Reviews from '@/pages/Reviews'; +import Alerts from '@/pages/Alerts'; +import KnowledgeBase from '@/pages/KnowledgeBase'; function ProtectedRoute({ children }: { children: React.ReactNode }) { const { isAuthenticated } = useAuthStore(); @@ -57,6 +59,8 @@ export default function App() { } /> } /> } /> + } /> + } /> } />