Skip to content

Commit

Permalink
fix: disabled wallet connect (#1176)
Browse files Browse the repository at this point in the history
  • Loading branch information
impelcrypto authored Feb 12, 2024
1 parent 2959eb4 commit 489f917
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions src/components/header/modals/SelectWallet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@
</span>
</div>
<div class="wrapper--wallets">
<button
v-for="(wallet, index) in evmWallets"
:key="index"
class="box__row--wallet box--hover--active"
:class="currentWallet === wallet.source && 'border--active'"
:wallet="wallet"
@click="setEvmWalletModal(wallet.source)"
>
<div class="box--img">
<img :src="wallet.img" />
</div>
<div>
<span>
{{ castWalletName(wallet.name) }}
</span>
</div>
</button>
<div v-for="(wallet, index) in evmWallets" :key="index">
<button
v-if="wallet.source !== SupportWallet.WalletConnect"
class="box__row--wallet box--hover--active"
:class="currentWallet === wallet.source && 'border--active'"
@click="setEvmWalletModal(wallet.source)"
>
<div class="box--img">
<img :src="wallet.img" />
</div>
<div>
<span>
{{ castWalletName(wallet.name) }}
</span>
</div>
</button>
</div>
</div>
</div>
<div>
Expand Down Expand Up @@ -300,6 +300,7 @@ export default defineComponent({
isAccountUnification,
isClosing,
isEnablePolkasafe,
SupportWallet,
};
},
});
Expand Down

0 comments on commit 489f917

Please sign in to comment.