fix: remove console log from getProjects function

This commit is contained in:
Soulter
2026-01-14 19:15:17 +08:00
parent fbecefae25
commit 6750d6c238
-1
View File
@@ -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 || [];