From 6750d6c23839b260bdc8f1c2530bdae92d5bada1 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 14 Jan 2026 19:15:17 +0800 Subject: [PATCH] fix: remove console log from getProjects function --- dashboard/src/composables/useProjects.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/dashboard/src/composables/useProjects.ts b/dashboard/src/composables/useProjects.ts index d0260a802..13071ded4 100644 --- a/dashboard/src/composables/useProjects.ts +++ b/dashboard/src/composables/useProjects.ts @@ -9,7 +9,6 @@ export function useProjects() { async function getProjects() { try { const res = await axios.get('/api/chatui_project/list'); - console.log('Fetched projects:', res); if (res.data.status === 'ok') { projects.value = res.data.data || [];