-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix(Onboarding): Image is visible after first onboard. Other minor fixes #10489
Conversation
@@ -435,7 +435,9 @@ QtObject { | |||
|
|||
function isEnsVerified(publicKey) { | |||
if (publicKey === "" || !isChatKey(publicKey) ) | |||
return | |||
return false | |||
if (!mainModuleInst) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the fix of identicon ring
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this may be done in one line return !mainModuleInst && mainModuleInst.isEnsVerified(publicKey)
:)
@@ -407,7 +407,8 @@ method onNodeLogin*[T](self: Module[T], error: string) = | |||
self.logoutAndDisplayError(err, StartupErrorType.UnknownType) | |||
return | |||
if currStateObj.flowType() != FlowType.AppLogin: | |||
discard self.controller.storeIdentityImage() | |||
let images = self.controller.storeIdentityImage() | |||
self.accountsService.updateLoggedInAccount(self.getDisplayName, images) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the fix of lost profile image
Jenkins Builds
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGMT :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fixes #10099
What does the PR do
Affected areas
Onboarding
Screenshot of functionality (including design for comparison)
Screen.Recording.2023-04-30.at.14.58.24.mov