From 7f96c718e36aaf8a211188ab90d247140bee0903 Mon Sep 17 00:00:00 2001 From: michaelshin Date: Thu, 20 Apr 2023 16:17:18 -0400 Subject: [PATCH] Fix typos --- deepview-explore/react-ui/src/sections/CarbonEquivalent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepview-explore/react-ui/src/sections/CarbonEquivalent.js b/deepview-explore/react-ui/src/sections/CarbonEquivalent.js index 7e1fae5..4216bf3 100644 --- a/deepview-explore/react-ui/src/sections/CarbonEquivalent.js +++ b/deepview-explore/react-ui/src/sections/CarbonEquivalent.js @@ -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);