diff --git a/components/widgets/land-cover/tree-cover/selectors.js b/components/widgets/land-cover/tree-cover/selectors.js index 7fb602b3b0..c7775e21c5 100644 --- a/components/widgets/land-cover/tree-cover/selectors.js +++ b/components/widgets/land-cover/tree-cover/selectors.js @@ -27,12 +27,10 @@ export const parseData = createSelector( const parsedData = [ { label: 'Tree Cover'.concat(label), - value: hasPlantations ? plantationsCover : cover - plantationsCover, + value: hasPlantations ? plantationsCover : cover, color: colors.naturalForest, percentage: - ((hasPlantations ? plantationsCover : cover - plantationsCover) / - totalArea) * - 100, + ((hasPlantations ? plantationsCover : cover) / totalArea) * 100, }, { label: 'Other Land Cover',