diff --git a/store/zksync/wallet.ts b/store/zksync/wallet.ts index 37c226fe7..0321e6904 100644 --- a/store/zksync/wallet.ts +++ b/store/zksync/wallet.ts @@ -168,14 +168,14 @@ export const useZkSyncWalletStore = defineStore("zkSyncWallet", () => { if (!account.value.address) throw new Error("Account is not available"); await validateAddress(account.value.address); // Throws an error if the address is not valid }); - walletAddressValidate(); + walletAddressValidate().catch(() => undefined); onboardStore.subscribeOnAccountChange(() => { resetSigner(); resetL1Signer(); resetAccountState(); resetBalance(); - reloadWalletAddressValidation(); + reloadWalletAddressValidation().catch(() => undefined); }); return {