Skip to content

Commit

Permalink
TBCCT-193 text change in exchange unit order in map tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
onehanddev authored and andresgnlez committed Dec 12, 2024
1 parent 4c00d46 commit d4e80e1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions client/src/containers/overview/map/popup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default function CostAbatementPopup() {
<table className="mt-2">
<thead>
<tr>
<th className={cn(HEADER_CLASSES, "pr-2")}>Cost</th>
<th className={cn(HEADER_CLASSES, "px-2")}>Abatement</th>
<th className={cn(HEADER_CLASSES, "pr-2")}>Cost (total, USD)</th>
<th className={cn(HEADER_CLASSES, "px-2")}>Abatement (tCO2e)</th>
</tr>
</thead>
<tbody>
Expand All @@ -33,9 +33,7 @@ export default function CostAbatementPopup() {
{renderCurrency(popup?.features?.[0]?.properties?.cost)}
</td>
<td className={cn(CELL_CLASSES, "px-2")}>
{renderCurrency(
popup?.features?.[0]?.properties?.abatementPotential,
)}
{popup?.features?.[0]?.properties?.abatementPotential}
</td>
</tr>
</tbody>
Expand Down

0 comments on commit d4e80e1

Please sign in to comment.