pref: remove console

This commit is contained in:
licoy 2024-07-12 10:33:43 +08:00
parent 74b915a790
commit a7ceb61e27
1 changed files with 0 additions and 2 deletions

View File

@ -301,7 +301,6 @@ export function SdPanel() {
} }
} }
} }
// console.log(JSON.stringify(reqParams, null, 4));
let data: any = { let data: any = {
model: currentModel.value, model: currentModel.value,
model_name: currentModel.name, model_name: currentModel.name,
@ -311,7 +310,6 @@ export function SdPanel() {
img_data: "", img_data: "",
}; };
sendSdTask(data, sdListDb, execCountInc, () => { sendSdTask(data, sdListDb, execCountInc, () => {
console.log(currentModel.value);
setParams(getModelParamBasicData(columns, params, true)); setParams(getModelParamBasicData(columns, params, true));
}); });
}; };