Skip to content

Commit

Permalink
fix staking provider fee display
Browse files Browse the repository at this point in the history
  • Loading branch information
michavie committed Mar 19, 2024
1 parent 61f6010 commit b930c14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const _DelegateProviderList = (props: Props) => (
</div>
</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{provider.apr}%</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{provider.serviceFee}%</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{+provider.serviceFee * 100}%</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
{provider.delegationCap.isZero() ? 'Uncapped' : provider.identityInfo.stakePercent + '%'}
</td>
Expand Down

0 comments on commit b930c14

Please sign in to comment.