Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
yanok87 committed Jan 21, 2025
1 parent adb7e4f commit 0221d45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion explorer-nextjs/src/components/staking/StakeTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,12 @@ const StakeTable = ({ nodes }: { nodes: MappedNymNodes }) => {
});
return;
}
nodeIdentityKey &&
if (nodeIdentityKey) {
setSelectedNodeForStaking({
nodeId: nodeId,
identityKey: nodeIdentityKey,
});
}
},
[isWalletConnected],
);
Expand Down

0 comments on commit 0221d45

Please sign in to comment.