Skip to content

Commit

Permalink
feat: find wallet bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennisic committed Nov 24, 2023
1 parent 48477c3 commit 33e9b47
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Wallets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,10 @@ const onClickDisconnect = async () => {
}
watch(() => connectedWallet.value, (newVal, oldVal) => {
if (newVal && newVal !== oldVal) {
console.log(11111111111,connectedWallet.value)
console.log(22222,newVal,33333,oldVal)
// debugger
if (newVal) {
console.info("start init")
const provider = newVal.provider;
const network = newVal.chains[0].id;
Expand Down

0 comments on commit 33e9b47

Please sign in to comment.