From 95b038c7170e15846c30ca05ad6f299211beb24a Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Wed, 9 Jul 2025 10:33:56 +0000 Subject: [PATCH] fix: remove checking limts by default --- src/views/AccountViewView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index e876fb0b..24e76d2b 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -1092,13 +1092,13 @@ export default class AccountViewView extends Vue { this.publicHex = identity.keys[0].publicKeyHex; this.publicBase64 = Buffer.from(this.publicHex, "hex").toString("base64"); this.derivationPath = identity.keys[0].meta?.derivationPath as string; - await this.checkLimits(); + } else if (account?.publicKeyHex) { // use the backup values in the top level of the account object this.publicHex = account.publicKeyHex as string; this.publicBase64 = Buffer.from(this.publicHex, "hex").toString("base64"); this.derivationPath = account.derivationPath as string; - await this.checkLimits(); + } }