Skip to content

Commit

Permalink
Handle enable/delegate edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
tombeynon committed Mar 3, 2022
1 parent 5f83928 commit dfc9f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Delegations.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ class Delegations extends React.Component {
onDelegate={this.onClaimRewards}>{validator.description.moniker}</Delegate>
</td>
<td className="text-center">
{operator ? this.restakePossible() ? (
{operator ? this.restakePossible() && delegation ? (
this.grantsValid(operator) ? (
<RevokeRestake
size="sm" variant="outline-danger"
Expand Down

0 comments on commit dfc9f31

Please sign in to comment.