diff --git a/packages/app/src/components/WalletCards/StewardCollectiveCard.tsx b/packages/app/src/components/WalletCards/StewardCollectiveCard.tsx index 3377afb5..22122fe1 100644 --- a/packages/app/src/components/WalletCards/StewardCollectiveCard.tsx +++ b/packages/app/src/components/WalletCards/StewardCollectiveCard.tsx @@ -5,6 +5,7 @@ import { IpfsCollective, StewardCollective } from '../../models/models'; import { styles } from './styles'; import { InfoIcon, StewardOrange } from '../../assets'; import { calculateGoodDollarAmounts } from '../../lib/calculateGoodDollarAmounts'; +import { defaultInfoLabel } from '../../models/constants'; interface StewardCollectiveCardProps { collective: StewardCollective; @@ -32,6 +33,8 @@ function StewardCollectiveCard({ const dynamicContainerStyle = isDesktopResolution ? { width: '48%' } : {}; + const infoLabel = ipfsCollective.infoLabel ?? defaultInfoLabel; + return ( @@ -40,7 +43,7 @@ function StewardCollectiveCard({ {ipfsCollective.name} - {ipfsCollective.description} + {infoLabel}