diff --git a/package.json b/package.json index c1abf18a..2a51fa60 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "md-editor-v3": "^2.8.1", "numeral": "^2.0.6", "osmojs": "^14.0.0-rc.0", - "ping-widget": "^0.0.8", + "ping-widget": "^0.0.9", "pinia": "^2.0.28", "postcss": "^8.4.23", "prismjs": "^1.29.0", diff --git a/src/layouts/components/NavBarWallet.vue b/src/layouts/components/NavBarWallet.vue index ead33231..558ab460 100644 --- a/src/layouts/components/NavBarWallet.vue +++ b/src/layouts/components/NavBarWallet.vue @@ -25,6 +25,12 @@ const tipMsg = computed(() => { ? { class: 'error', msg: 'Copy Error!' } : { class: 'success', msg: 'Copy Success!' }; }); + +const addressChange = computed(() => { + return walletStore?.currentAddress || walletStore?.walletIsConnected + ? true + : false; +});