Skip to content

Commit

Permalink
Merge pull request #11383 from kodadot/fix--warning-message-on-empty-…
Browse files Browse the repository at this point in the history
…accounts

fix: warning message on empty accounts
  • Loading branch information
vikiival authored Jan 27, 2025
2 parents ac6cf9b + 1145695 commit c31809b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions components/common/ConnectWallet/WalletMenuItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,25 @@
</a>
</div>
</div>

<div
v-if="walletAccountsWithProfile.length === 0 && showAccountList"
class="account-list"
>
<div class="account-item">
<a
href="#!"
class="pl-5 block"
>
<span class="block mb-2 text-sm">
<NeoIcon
icon="circle-info"
class="mr-2 text-k-grey"
/>No Polkadot Accounts Found</span>
<span class="block text-k-grey text-xs">To Continue, Please Create or Import Accounts in {{ wallet.name }}</span>
</a>
</div>
</div>
</div>
</template>

Expand Down

0 comments on commit c31809b

Please sign in to comment.