Skip to content

Commit

Permalink
fix: correct account checking
Browse files Browse the repository at this point in the history
  • Loading branch information
Asmadek committed Oct 11, 2023
1 parent 3df90f9 commit 5bf9f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/pages/Staking/Overview/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const Overview = () => {
const isSingleShard = walletUtils.isSingleShard(activeWallet);
const isSingleMultishard = walletUtils.isMultiShard(activeWallet) && addresses.length === 1;
const isNovaWallet = walletUtils.isNovaWallet(activeWallet);
const isWalletConnect = walletUtils.isNovaWallet(activeWallet);
const isWalletConnect = walletUtils.isWalletConnect(activeWallet);

if (isMultisig || isSingleShard || isSingleMultishard || isNovaWallet || isWalletConnect) {
setSelectedNominators([addresses[0]]);
Expand Down

0 comments on commit 5bf9f36

Please sign in to comment.