diff --git a/src/i18n/locales/en/dashboard.json b/src/i18n/locales/en/dashboard.json index 1e97665..63dccbb 100644 --- a/src/i18n/locales/en/dashboard.json +++ b/src/i18n/locales/en/dashboard.json @@ -28,7 +28,7 @@ }, "currentAgentSummary": "Current Agent: {{name}}", "modelSummary": "Model: {{name}}", - "agentLabel": "Agent", + "agentLabel": "Current conversation target", "refresh": "Refresh" } } diff --git a/src/i18n/locales/th/dashboard.json b/src/i18n/locales/th/dashboard.json index 49ab8eb..db2d445 100644 --- a/src/i18n/locales/th/dashboard.json +++ b/src/i18n/locales/th/dashboard.json @@ -28,7 +28,7 @@ }, "currentAgentSummary": "Agent ปัจจุบัน: {{name}}", "modelSummary": "โมเดล: {{name}}", - "agentLabel": "Agent", + "agentLabel": "คู่สนทนาปัจจุบัน", "refresh": "รีเฟรช" } } diff --git a/src/i18n/locales/zh/dashboard.json b/src/i18n/locales/zh/dashboard.json index b618819..0279084 100644 --- a/src/i18n/locales/zh/dashboard.json +++ b/src/i18n/locales/zh/dashboard.json @@ -28,7 +28,7 @@ }, "currentAgentSummary": "当前 Agent:{{name}}", "modelSummary": "模型:{{name}}", - "agentLabel": "Agent", + "agentLabel": "当前对话对象", "refresh": "刷新" } } diff --git a/src/pages/Home/index.tsx b/src/pages/Home/index.tsx index ab99f1e..768eccb 100644 --- a/src/pages/Home/index.tsx +++ b/src/pages/Home/index.tsx @@ -219,7 +219,6 @@ function HomeChatComposerSection({ export default function HomePage() { const { t, locale } = useI18n(); const agents = useAgentsStore((state) => state.agents); - const agentsLoading = useAgentsStore((state) => state.loading); const defaultAgentId = useAgentsStore((state) => state.defaultAgentId); const chatInitialized = useChatStore((state) => state.initialized); const chatMessages = useChatStore((state) => state.messages); @@ -471,26 +470,18 @@ export default function HomePage() {