ui-kit-ck-consultant 0.5.243 → 0.5.244

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.
@@ -736,15 +736,11 @@ var Table = /*#__PURE__*/function (_React$Component) {
736
736
  if (children.props && children.props.children) {
737
737
  _this.getArray(children.props.children).forEach(function (line) {
738
738
  if (line.props && line.props.children) {
739
- console.log(line.props);
740
-
741
739
  _this.getArray(line.props.children).forEach(function (column) {
742
- console.log(column.props);
743
-
744
740
  if (column.props && column.props.children) {
745
741
  dataCSV += column.props.children.toString() + ";";
746
742
  } else {
747
- dataCSV += '';
743
+ dataCSV += ';';
748
744
  }
749
745
  });
750
746