diff --git a/storybook/qmlTests/tests/tst_ContactDetails.qml b/storybook/qmlTests/tests/tst_ContactDetails.qml index 72ab08d254..206a13a046 100644 --- a/storybook/qmlTests/tests/tst_ContactDetails.qml +++ b/storybook/qmlTests/tests/tst_ContactDetails.qml @@ -108,7 +108,7 @@ Item { compare(contactDetails.profileStore.displayName,"myDisplayName", "Expected the profile store to be set") compare(contactDetails.displayName, contactDetails.profileStore.displayName, "Expected the display name to be set") compare(contactDetails.ensName, contactDetails.profileStore.name, "Expected the ens name to be set") - compare(contactDetails.ensVerified, true, "Expected the ensVerified to be set") + compare(contactDetails.ensVerified, false, "Expected the ensVerified to be set") compare(contactDetails.localNickname, "", "Expected the local nickname to be empty") compare(contactDetails.alias, contactDetails.profileStore.username, "Expected the alias to be set") compare(contactDetails.icon, contactDetails.profileStore.icon, "Expected the icon to be set") diff --git a/ui/app/AppLayouts/Profile/helpers/ContactDetails.qml b/ui/app/AppLayouts/Profile/helpers/ContactDetails.qml index 3e3a00f553..ebd1cc1524 100644 --- a/ui/app/AppLayouts/Profile/helpers/ContactDetails.qml +++ b/ui/app/AppLayouts/Profile/helpers/ContactDetails.qml @@ -78,7 +78,7 @@ QObject { readonly property var ownProfile: QObject { readonly property string displayName: root.profileStore.displayName readonly property string ensName: root.profileStore.name - readonly property bool isEnsVerified: root.profileStore.name !== "" + readonly property bool isEnsVerified: root.profileStore.name !== "" && Utils.isValidEns(root.profileStore.name) readonly property string localNickname: "" readonly property string alias: root.profileStore.username readonly property string icon: root.profileStore.icon