diff --git a/explorer-nextjs/src/components/staking/StakeTable.tsx b/explorer-nextjs/src/components/staking/StakeTable.tsx index 31a9017ef9..e3f67bc605 100644 --- a/explorer-nextjs/src/components/staking/StakeTable.tsx +++ b/explorer-nextjs/src/components/staking/StakeTable.tsx @@ -161,11 +161,12 @@ const StakeTable = ({ nodes }: { nodes: MappedNymNodes }) => { }); return; } - nodeIdentityKey && + if (nodeIdentityKey) { setSelectedNodeForStaking({ nodeId: nodeId, identityKey: nodeIdentityKey, }); + } }, [isWalletConnected], );