diff --git a/explorer/src/components/account/StakeAccountSection.tsx b/explorer/src/components/account/StakeAccountSection.tsx index 416a86ad81..548f1ce01a 100644 --- a/explorer/src/components/account/StakeAccountSection.tsx +++ b/explorer/src/components/account/StakeAccountSection.tsx @@ -296,5 +296,11 @@ function isFullyInactivated( return false; } - return stake.delegation.stake.toString() === activation.inactive.toString(); + const delegatedStake = stake.delegation.stake.toNumber(); + const inactiveStake = activation.inactive; + + return ( + !stake.delegation.deactivationEpoch.eq(MAX_EPOCH) && + delegatedStake === inactiveStake + ); }