@@ -10,7 +10,6 @@ export const updateTask = (projectId, taskId, task, updateTaskSuccess, updateTas
Http.put(Apis.TASK.UPDATE_TASK.replace('{projectId}', projectId).replace('{taskId}', taskId), task).then((res) => {
updateTaskSuccess(res)
}).catch((error) => {
- console.log(error);
updateTaskFail(error)
})
}