Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eshark9312 committed Feb 1, 2024
1 parent 10f1ce6 commit b326cf8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const ValidatorsState = ({
<StatisticItemSpacedContent>
<StatisticLabel>Nominator (Active / Total)</StatisticLabel>
<NumericValue>
{`${activeNominatorsCount > 0 ? activeValidatorsCount : '-'} / ${
{`${activeNominatorsCount > 0 ? activeNominatorsCount : '-'} / ${
activeNominatorsCount && allNominatorsCount ? allNominatorsCount : '-'
}`}
</NumericValue>
Expand Down

0 comments on commit b326cf8

Please sign in to comment.