From 1fb18cc11c8c3d87e04a869e15d555e1ac6feb0c Mon Sep 17 00:00:00 2001 From: yujiangping Date: Thu, 15 Jan 2026 20:25:05 +0800 Subject: [PATCH] fix(quick-actions): correct space management navigation route - Fix typo in space management quick action route from '/spce' to '/space' - Ensure users are correctly navigated to the space management page when clicking the quick action --- web/src/views/Index/components/QuickActions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/views/Index/components/QuickActions.tsx b/web/src/views/Index/components/QuickActions.tsx index edf5166e..063014df 100644 --- a/web/src/views/Index/components/QuickActions.tsx +++ b/web/src/views/Index/components/QuickActions.tsx @@ -47,7 +47,7 @@ const QuickActions: FC = ({ onNavigate }) => { key: 'space-management', icon: spaceIcon, title: t('quickActions.spaceManagement'), - onClick: () => onNavigate?.('/spce') + onClick: () => onNavigate?.('/space') }, // { // key: 'workflow-orchestration',