Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikolajczyk committed Oct 28, 2024
1 parent cfdb83a commit 95650a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ const MetricsEpochGridTotalDonations: FC<MetricsEpochGridTotalDonationsProps> =

const totalUserDonationsValues = getValuesToDisplay({
cryptoCurrency: 'ethereum',
showCryptoSuffix: true,
valueCrypto: totalUserDonations,
getFormattedEthValueProps: {
maxNumberOfDigitsToShow: 6,
},
showCryptoSuffix: true,
valueCrypto: totalUserDonations,
});

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ const MetricsEpochGridTotalMatchingFund: FC<MetricsEpochGridTotalMatchingFundPro

const totalMatchingFundToDisplay = getValuesToDisplay({
cryptoCurrency: 'ethereum',
showCryptoSuffix: true,
valueCrypto: matchingFund,
getFormattedEthValueProps: {
maxNumberOfDigitsToShow: 6,
},
showCryptoSuffix: true,
valueCrypto: matchingFund,
});

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ const MetricsEpochGridUnallocatedValue: FC<MetricsEpochGridUnallocatedValueProps

const unallocatedValue = getValuesToDisplay({
cryptoCurrency: 'ethereum',
showCryptoSuffix: true,
valueCrypto: epochUnusedRewards?.value,
getFormattedEthValueProps: {
maxNumberOfDigitsToShow: 6,
},
showCryptoSuffix: true,
valueCrypto: epochUnusedRewards?.value,
});

return (
Expand Down

0 comments on commit 95650a8

Please # to comment.