diff --git a/src/modules/discovery/pages/hallOfFame/components/GeyserHeroes.tsx b/src/modules/discovery/pages/hallOfFame/components/GeyserHeroes.tsx index ed098eb6a..d1e4ecb22 100644 --- a/src/modules/discovery/pages/hallOfFame/components/GeyserHeroes.tsx +++ b/src/modules/discovery/pages/hallOfFame/components/GeyserHeroes.tsx @@ -78,9 +78,18 @@ const HeroSectionWrapper = ({ return ( - - {title} - + + + {title} + + {description} {children} diff --git a/src/modules/discovery/pages/hallOfFame/components/TopHeroes.tsx b/src/modules/discovery/pages/hallOfFame/components/TopHeroes.tsx index ebf914e67..d3403a1f8 100644 --- a/src/modules/discovery/pages/hallOfFame/components/TopHeroes.tsx +++ b/src/modules/discovery/pages/hallOfFame/components/TopHeroes.tsx @@ -135,7 +135,7 @@ const HeroDisplay = ({ 'Contributed <1>{{usdAmount}} ({{satsAmount}} sats) with <3>{{numberOfContributions}} contributions to <5>{{numberOfProjects}} projects' } values={{ - usdAmount: formatAmount(data[labels.amountUsd], FormatCurrencyType.Usdcent), + usdAmount: formatAmount(data[labels.amountUsd], FormatCurrencyType.Usd), satsAmount: getShortAmountLabel(data[labels.amount]), numberOfContributions: data[labels.numberOfContributions], numberOfProjects: data[labels.numberOfProjects], @@ -165,7 +165,7 @@ const HeroDisplay = ({ {{usdAmount}} ({{satsAmount}} sats) across <3>{{numberOfProjects}} projects'} values={{ - usdAmount: formatAmount(data[labels.amountUsd], FormatCurrencyType.Usdcent), + usdAmount: formatAmount(data[labels.amountUsd], FormatCurrencyType.Usd), satsAmount: getShortAmountLabel(data[labels.amount]), numberOfProjects: data[labels.numberOfProjects], }}