Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelshin committed Apr 20, 2023
1 parent 9dfef04 commit 7f96c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepview-explore/react-ui/src/sections/CarbonEquivalent.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const CarbonEquivalent = ({ carbonData }) => {
// Convert to kgs if we have small values
if (largestValue < 1) {
carbonData.map(value => value.carbonEmissions*1000)
XAxisLabel = "C02e (kgs)"
XAxisLabel = "CO2e (kgs)"
}
carbonData.sort((a, b) => a.carbonEmissions - b.carbonEmissions);

Expand Down

0 comments on commit 7f96c71

Please sign in to comment.