refactor(ckchat): 移除调试用的console.log语句

清理代码中用于调试的console.log输出,保持代码整洁
This commit is contained in:
超级老白兔
2025-09-18 15:10:50 +08:00
parent f58b95cd95
commit e9fbebdfad
2 changed files with 0 additions and 3 deletions

View File

@@ -15,7 +15,6 @@ export const createContractList = async (
const realGroup = countLables
.filter(item => item.id !== 0)
.map(item => item.id);
console.log(realGroup);
const dataByLabels = [];
for (const label of countLables) {

View File

@@ -131,8 +131,6 @@ export const useCkChatStore = createPersistStore<CkChatState>(
lastSearchKeyword = state.searchKeyword;
}
console.log("cachedResult", cachedResult);
return cachedResult;
};
})(),