Skip to content

Commit

Permalink
Min Requirement should not show how much is left to be stakes but rat…
Browse files Browse the repository at this point in the history
…her the static total needed
  • Loading branch information
Sam Sweet committed Oct 8, 2024
1 parent 73be4ae commit 02d6259
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/molecules/StakeDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ export const StakeDisplay = () => {
</span>
<div className="flex gap-x-1">
<span className="font-light text-xs">Min. requirement: </span>
<span className="text-xs">{minimumStakeRequirement} SHM</span>
<span className="text-xs">
{nodeStatus?.stakeRequirement || "10"} SHM
</span>
</div>
</div>
<hr className="my-1 mx-3" />
Expand Down

0 comments on commit 02d6259

Please sign in to comment.