Skip to content

Commit

Permalink
Fix bug on html side
Browse files Browse the repository at this point in the history
  • Loading branch information
DemogorGod committed Oct 27, 2023
1 parent 377ca4e commit ff73f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/pages/operators/Operator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ watch([loadingSessionLogin || loadingInitializeOperators], () => {
<h6 class="text-[16px]">
Your Connected Wallets
</h6>
<button v-for="act in user.accounts" :key="act.address" type="button" class="border-y border-y-grey_1 hover:border-y-grey_3
<button v-for="act in user?.accounts" :key="act.address" type="button" class="border-y border-y-grey_1 hover:border-y-grey_3
text-grey_4 my-[10px] w-full flex justify-between truncate"
@click="selectedWallet = { address: act.address, walletProvider: act.walletProvider }, openSelectWalletOptions = false">
<span>{{ act.walletProvider }}</span>
Expand Down

0 comments on commit ff73f6b

Please sign in to comment.