gantt-task-react-powern 0.6.16 → 0.6.17

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.
@@ -3677,14 +3677,6 @@ function getCriticalPaths(leafTasks) {
3677
3677
  }
3678
3678
  }
3679
3679
 
3680
- var printedList = taskChainList.map(function (elem) {
3681
- var newElem = _extends({}, elem);
3682
-
3683
- newElem.duration = Math.round(elem.duration / 86400000);
3684
- return newElem;
3685
- });
3686
- console.debug(printedList);
3687
-
3688
3680
  if (taskChainList.length > 0) {
3689
3681
  taskChainList.sort(function (a, b) {
3690
3682
  return b.duration - a.duration;