We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af6252c commit a2748d3Copy full SHA for a2748d3
apps/namadillo/src/App/Staking/StakingRewardsPanel.tsx
@@ -77,7 +77,10 @@ export const StakingRewardsPanel = (): JSX.Element => {
77
/>
78
<div className="hidden sm:block">
79
<div className="text-md text-gray-500 -mt-10 -mb-1 text-center">
80
- {chainParameters?.data?.apr.toFixed(2)}%
+ {chainParameters?.data?.apr ?
81
+ chainParameters.data.apr.multipliedBy(100).toFixed(2)
82
+ : "--"}
83
+ %
84
</div>
85
<div className="text-sm text-neutral-450 text-center">
86
Est. Rewards Rate
0 commit comments