diff --git a/src/plugins/arkeo/StakingCard.tsx b/src/plugins/arkeo/StakingCard.tsx index be973dd619a..5986aad9159 100644 --- a/src/plugins/arkeo/StakingCard.tsx +++ b/src/plugins/arkeo/StakingCard.tsx @@ -19,7 +19,7 @@ type StakingCardProps = { export const StakingCard: React.FC = props => { const translate = useTranslate() const { onClick, ...opportunity } = props - const { assetId, underlyingAssetId, provider, apy, opportunityName } = opportunity + const { assetId, underlyingAssetId, provider, apy, isLoaded, opportunityName } = opportunity const currentAssetId = underlyingAssetId ?? assetId const asset = useAppSelector(state => selectAssetById(state, currentAssetId ?? '')) const opportunityApy = bnOrZero(apy).times(100).toFixed(2) @@ -68,10 +68,10 @@ export const StakingCard: React.FC = props => { - + - +