Skip to content

Commit

Permalink
Merge pull request #648 from Outblock/606-bug-text-content-missing-in…
Browse files Browse the repository at this point in the history
…-verify-password-page

fix: about restore UI #606
  • Loading branch information
zhouxl authored Dec 10, 2024
2 parents 7f9509c + 0810070 commit e401c7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FRW/Modules/MultiBackup/View/MultiBackupVerifyPinView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct MultiBackupVerifyPinView: RouteableView {
var callback: MultiBackupVerifyPinViewModel.VerifyCallback?

var title: String {
" "
""
}

var body: some View {
Expand Down Expand Up @@ -76,7 +76,7 @@ struct MultiBackupVerifyPinView: RouteableView {
}

func backButtonAction() {
Router.dismiss()
Router.pop()
callback?(false, "")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ extension RestoreMultiConnectViewModel {
return
}
self.storeItem(list: verifyList)
} else {
DispatchQueue.main.async {
self.enable = true
}
}
})
} else {
Expand Down

0 comments on commit e401c7e

Please sign in to comment.