From 54d113ec032c5483cc6f6119fd0245a1b9f9ebf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Zi=C3=B3=C5=82ek?= Date: Mon, 15 Apr 2024 09:45:26 +0200 Subject: [PATCH] fix: lower PPF in label --- .../MetricsEpochGridFundsUsage/MetricsEpochGridFundsUsage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Metrics/MetricsEpoch/MetricsEpochGridFundsUsage/MetricsEpochGridFundsUsage.tsx b/client/src/components/Metrics/MetricsEpoch/MetricsEpochGridFundsUsage/MetricsEpochGridFundsUsage.tsx index 3a956489ec..cde86a2a4f 100644 --- a/client/src/components/Metrics/MetricsEpoch/MetricsEpochGridFundsUsage/MetricsEpochGridFundsUsage.tsx +++ b/client/src/components/Metrics/MetricsEpoch/MetricsEpochGridFundsUsage/MetricsEpochGridFundsUsage.tsx @@ -110,7 +110,7 @@ const MetricsEpochGridFundsUsage: FC = ({ { label: t('ppf'), value: getNumberValue(ppf / 2n), - valueLabel: getFormattedEthValue(ppf, true, false, false, numberOfDecimalPlacesToUse) + valueLabel: getFormattedEthValue(ppf / 2n, true, false, false, numberOfDecimalPlacesToUse) .fullString, }, ];