iptdevs-design-system 3.1.862 → 3.1.863

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4169,9 +4169,6 @@ class CodFormStepTwoComponent extends CodFormSteps {
4169
4169
  this.selectCity(this.localStorageCOD.getCodFormData(2, 'city'));
4170
4170
  }
4171
4171
  selectCountry(country) {
4172
- console.log("Tipo de dato country", typeof country);
4173
- console.log("El dato", country);
4174
- // this.parametersAll?.State;
4175
4172
  const countryNumber = typeof country === 'string' ? parseInt(country, 10) : country;
4176
4173
  if (country != null) {
4177
4174
  this.codFormStepTwo.controls['country'].setValue(country);
@@ -5613,7 +5610,6 @@ class CodFormComponent {
5613
5610
  getParameters() {
5614
5611
  this.parameterService.getAllParametersCodForm().subscribe((response) => {
5615
5612
  this.parametersAll = response.data;
5616
- console.log("cod_form : ", this.parametersAll);
5617
5613
  });
5618
5614
  }
5619
5615
  }