deleted console.log

This commit is contained in:
Daria Golova
2022-07-21 16:09:44 +03:00
parent 68e94201e0
commit ffa92ded10

View File

@@ -39,7 +39,6 @@ const Profile = observer (() => {
...prevState,
[field]: value,
}))
console.log(addedValues)
};
const changeUpdatedValues = (value, field, key) => {
@@ -66,14 +65,12 @@ const Profile = observer (() => {
};
const checkFillingUpdateForm = (eventTarget) => {
console.log(eventTarget);
if (eventTarget && eventTarget.id === 'sendingUpdatedValues') {
const checkingCondition = updatedValues.every(item => !Object.keys(item).find(elem => !item[elem]));
if (checkingCondition) {
setFillingUpdateForm(true);
}
}
console.log(updatedValues);
}
const handleSelectedItems = (selectedItems) => {