Skip to content

Commit

Permalink
chore(tcl): remove validation to hide carbon message
Browse files Browse the repository at this point in the history
  • Loading branch information
willian-viana committed Apr 25, 2024
1 parent 956387b commit 305515c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/widgets/forest-change/tree-loss/selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const parseSentence = createSelector(
if (totalLoss === 0) {
sentence = indicator ? noLossWithIndicator : noLoss;
}
if (tropical && totalLoss > 0 && endYear !== 2023) {
if (tropical && totalLoss > 0) {
sentence = `${sentence}, ${co2Emissions}`;
}
sentence = `${sentence}.`;
Expand Down

0 comments on commit 305515c

Please sign in to comment.