diff --git a/components/common/AmountInput.vue b/components/common/AmountInput.vue index 44ae74c1..54bdce24 100644 --- a/components/common/AmountInput.vue +++ b/components/common/AmountInput.vue @@ -32,6 +32,7 @@ type="text" maxlength="20" spellcheck="false" + autocomplete="false" :style="{ width: `${inputWidth}px` }" @keyup.enter="emit('enter')" /> diff --git a/components/modal/ViewOnExplorer.vue b/components/modal/ViewOnExplorer.vue index bdfe7d27..cdfbce03 100644 --- a/components/modal/ViewOnExplorer.vue +++ b/components/modal/ViewOnExplorer.vue @@ -48,15 +48,15 @@ const networks = computed(() => { return [ { destination: destinations.value.era, - link: `${eraBlockExplorerUrl.value}/address/${account.value}`, + link: `${eraBlockExplorerUrl.value}/address/${account.value.address}`, }, { destination: destinations.value.zkSyncLite, - link: `${liteBlockExplorerUrl.value}/address/${account.value}`, + link: `${liteBlockExplorerUrl.value}/address/${account.value.address}`, }, { destination: destinations.value.ethereum, - link: `${ethereumBlockExplorerUrl.value}/address/${account.value}`, + link: `${ethereumBlockExplorerUrl.value}/address/${account.value.address}`, }, ]; }); diff --git a/views/zksync/era/transactions/Deposit.vue b/views/zksync/era/transactions/Deposit.vue index a9ae651c..3483e265 100644 --- a/views/zksync/era/transactions/Deposit.vue +++ b/views/zksync/era/transactions/Deposit.vue @@ -87,9 +87,12 @@ >

Your current allowance for {{ selectedToken!.symbol }} is - . Depositing more than that will require you to approve a new allowance. + + +  Depositing more than that will require you to approve a new allowance. +

Learn more