remove console.log

This commit is contained in:
arc-alex
2024-01-06 18:26:37 +01:00
parent 08a32a7265
commit c6f61b16cb
-1
View File
@@ -307,7 +307,6 @@ export const postWorksheet = async (id: string, worksheet: string) => {
* @description STEP 5
*/
export const postPreviewSheet = async (id: string, options: ExcelImportMap) => {
console.log(options);
const response = await axios.post(`${ontimeURL}/sheet/pull`, { id, options });
return response.data.data;
};