remove console.log

This commit is contained in:
KarthiKKVardhan 2026-05-14 18:15:21 +05:30
parent 1fe90a72ea
commit fde66f4390

View File

@ -194,7 +194,7 @@ const EditCompanyProfile = () => {
return true;
}
}
console.log('Validating step:', stepIndex, 'with form values:', form);
const requiredFields = requiredFieldsByStep[stepIndex] || [];
if (!requiredFields.length) return true;
@ -805,7 +805,7 @@ const EditCompanyProfile = () => {
// Find emirate and city IDs by name for the API call
const selectedEmirate = emirateOptions.find(opt => opt.label === form.contactEmirate);
const selectedCity = contactCityOptions.find(opt => opt.label === form.contactCityTown);
console.log('Selected Emirate:', form);
const establishmentData = {
establishment_code: form.uniqueLicenseNumber || "",
factory_name: form.contactName || "",