diff --git a/GME Remit.xcodeproj/project.pbxproj b/GME Remit.xcodeproj/project.pbxproj index dacb5eea..9624532d 100644 --- a/GME Remit.xcodeproj/project.pbxproj +++ b/GME Remit.xcodeproj/project.pbxproj @@ -16568,7 +16568,7 @@ CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 5; + CURRENT_PROJECT_VERSION = 0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = 5QB497ZAGT; ENABLE_BITCODE = NO; @@ -16583,7 +16583,7 @@ "$(inherited)", "$(PROJECT_DIR)/GME\\ Remit/ThirdParty/virtualKeyboard/mtk_module", ); - MARKETING_VERSION = 2.8.0; + MARKETING_VERSION = 2.8.1; PRODUCT_BUNDLE_IDENTIFIER = com.gme.gmeremit; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -16603,7 +16603,7 @@ CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 5; + CURRENT_PROJECT_VERSION = 0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = 5QB497ZAGT; ENABLE_BITCODE = NO; @@ -16619,7 +16619,7 @@ "$(inherited)", "$(PROJECT_DIR)/GME\\ Remit/ThirdParty/virtualKeyboard/mtk_module", ); - MARKETING_VERSION = 2.8.0; + MARKETING_VERSION = 2.8.1; PRODUCT_BUNDLE_IDENTIFIER = com.gme.gmeremit; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/GME Remit/Modules/Home/User Interface/Wireframe/HomeWireframe.swift b/GME Remit/Modules/Home/User Interface/Wireframe/HomeWireframe.swift index 61002bce..2a91f107 100644 --- a/GME Remit/Modules/Home/User Interface/Wireframe/HomeWireframe.swift +++ b/GME Remit/Modules/Home/User Interface/Wireframe/HomeWireframe.swift @@ -74,7 +74,11 @@ extension HomeWireframe: HomeWireframeInput { } func openKyc() { - NewRegisterWireframe().open(on: view, step: .first) + KycWireframe().openViewControllerWithNavigation( + viewController: KycWireframe().getMainView(), + source: view + ) +// NewRegisterWireframe().open(on: view, step: .first) } func showPennyTestSubmit() { diff --git a/GME Remit/Modules/RegisterModules/Register/User Interface/Wireframe/RegisterWireframe.swift b/GME Remit/Modules/RegisterModules/Register/User Interface/Wireframe/RegisterWireframe.swift index 18157dec..cef7c666 100644 --- a/GME Remit/Modules/RegisterModules/Register/User Interface/Wireframe/RegisterWireframe.swift +++ b/GME Remit/Modules/RegisterModules/Register/User Interface/Wireframe/RegisterWireframe.swift @@ -50,8 +50,9 @@ extension RegisterWireframe: RegisterWireframeInput { } func showKyc() { - if let navigation = self.view.navigationController { - NewRegisterWireframe().pushMainView(in: navigation) - } + view.navigationController?.pushViewController(KycWireframe().getMainView(), animated: true) +// if let navigation = self.view.navigationController { +// NewRegisterWireframe().pushMainView(in: navigation) +// } } }