Skip to content

Commit

Permalink
Add loading comment on connect wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
DemogorGod committed Jun 26, 2023
1 parent 0546076 commit 7ad77fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/layouts/default-layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ onUnmounted(() =>{
Select Address
</h6>
<div
v-if="!userAddresses"
v-if="userAddresses.length === 0"
class="flex items-center justify-center h-[90%]"
>
<h6 class="nav_items">
Expand All @@ -292,7 +292,7 @@ onUnmounted(() =>{
v-for="act in userAddresses"
:key="act.address"
class="w-full border rounded-[8px] px-[10px] py-[15px] flex items-center justify-between hover:border-blue_3"
@click="selectAddress(act.address), openWalletConnect = false"
@click="selectAddress(act.address), openWalletConnect = false, authFlowCardNumber = 1"
>
<div>
{{ convertString(act.address) }}
Expand Down

0 comments on commit 7ad77fe

Please sign in to comment.