From b043af16daff93862c42b49bb1f84badb80b5c67 Mon Sep 17 00:00:00 2001 From: Tempe Techie <95053628+tempe-techie@users.noreply.github.com> Date: Mon, 6 May 2024 12:14:57 +0200 Subject: [PATCH] Update Profile.vue --- src/views/Profile.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Profile.vue b/src/views/Profile.vue index b2abb72..010958f 100644 --- a/src/views/Profile.vue +++ b/src/views/Profile.vue @@ -178,7 +178,7 @@ export default { const checkDomainHolder = await contract.getDomainHolder(existingDomainParts[0]); - if (String(checkDomainHolder)===String(this.address)) { + if (String(checkDomainHolder).toLowerCase() === String(this.address).toLowerCase()) { this.addDomainManually(existingDomainLower); this.toast("Domain successfully added.", {type: TYPE.SUCCESS}); } else {