Skip to content

Commit

Permalink
[Task] #123, remove debug console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Type-Style committed Sep 6, 2024
1 parent ca759fe commit e0f4bb3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/client/components/Status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ function getStatusData(entries) {

}, 0) / divider; // now that all values have been added together, devide by amount of them

//console.log(prop + ": " + value + " divider: " + divider);
return value;
}

Expand All @@ -56,7 +55,6 @@ function getStatusData(entries) {

function getDistance() {
return cleanEntries.reduce((accumulatorValue: number, entry) => {
console.log(accumulatorValue);
if (!entry.distance) { return accumulatorValue }
return accumulatorValue + parseFloat(entry.distance.horizontal);
}, 0) / 1000;
Expand Down

0 comments on commit e0f4bb3

Please sign in to comment.