fix(profile): fix missing ring in own profile

Fixes #15314

The problem is that we used the `name` property to know if we have an ENS name, but we actually set it to whatever is available, so we need to validate that it's an ENS name
This commit is contained in:
Jonathan Rainville 2024-06-27 14:07:36 -04:00
parent 7a7dbb631c
commit 3fc764fe35
1 changed files with 1 additions and 1 deletions

View File

@ -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