remove recovery password screen

pull/891/head
ryanzhao 2 years ago
parent d86dd56aa4
commit 4c95154485

@ -114,24 +114,7 @@ struct PNModeView: View {
// If we are registering then we can just continue on
guard flow != .register else {
self.flow.completeRegistration()
// Go to recovery password screen
if let recoveryPasswordView = try? RecoveryPasswordView(flow: self.flow) {
let viewController: SessionHostingViewController = SessionHostingViewController(rootView: recoveryPasswordView)
viewController.setUpNavBarSessionIcon()
self.host.controller?.navigationController?.pushViewController(viewController, animated: true)
} else {
let modal = ConfirmationModal(
targetView: self.host.controller?.view,
info: ConfirmationModal.Info(
title: "ALERT_ERROR_TITLE".localized(),
body: .text("LOAD_RECOVERY_PASSWORD_ERROR".localized()),
cancelTitle: "BUTTON_OK".localized(),
cancelStyle: .alert_text
)
)
self.host.controller?.present(modal, animated: true)
}
self.finishRegister()
return
}
@ -162,6 +145,12 @@ struct PNModeView: View {
viewController.setUpNavBarSessionIcon()
self.host.controller?.navigationController?.pushViewController(viewController, animated: true)
}
private func finishRegister() {
let homeVC: HomeVC = HomeVC(flow: self.flow)
self.host.controller?.navigationController?.setViewControllers([ homeVC ], animated: true)
return
}
}
struct PNOptionView: View {

Loading…
Cancel
Save