diff --git a/src/modules/04_registry/components/Profile.vue b/src/modules/04_registry/components/Profile.vue index d4ee08682..7a84d8363 100644 --- a/src/modules/04_registry/components/Profile.vue +++ b/src/modules/04_registry/components/Profile.vue @@ -1014,11 +1014,12 @@ async function checIsVerified() { const data = res.data.result; profileStore.isVerified = data.isVerified; - console.log("isVerified===>", data.isVerified); - console.log("roleRegistryverify===>", roleRegistryverify.value); - console.log("roleKeyregistry===>", roleKeyregistry.value); - if (data.isVerified || roleRegistryverify.value) { - profileStore.isEdit = false; + if (roleRegistryverify.value || roleKeyregistry.value) { + if (data.isVerified || roleRegistryverify.value) { + profileStore.isEdit = false; + } else { + profileStore.isEdit = true; + } } else { profileStore.isEdit = true; }