Skip to content

Commit

Permalink
fix: lower PPF in label
Browse files Browse the repository at this point in the history
  • Loading branch information
aziolek committed Apr 15, 2024
1 parent 0f84ed1 commit 54d113e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const MetricsEpochGridFundsUsage: FC<MetricsEpochGridFundsUsageProps> = ({
{
label: t('ppf'),
value: getNumberValue(ppf / 2n),
valueLabel: getFormattedEthValue(ppf, true, false, false, numberOfDecimalPlacesToUse)
valueLabel: getFormattedEthValue(ppf / 2n, true, false, false, numberOfDecimalPlacesToUse)
.fullString,
},
];
Expand Down

0 comments on commit 54d113e

Please sign in to comment.