Browse Source

commit

v0.17
Naina Maharjan 1 year ago
parent
commit
690ac3fcca
  1. BIN
      .DS_Store
  2. 3
      GME Remit/Modules/Loyality Points/User Interface/Wireframe/LoyalityPointsWireframe.swift

BIN
.DS_Store

3
GME Remit/Modules/Loyality Points/User Interface/Wireframe/LoyalityPointsWireframe.swift

@ -11,6 +11,7 @@ import UIKit
class LoyalityPointsWireframe {
weak var view: UIViewController!
private lazy var recipientsWireframe: RecipientsWireframe = { RecipientsWireframe() }()
private lazy var allRecipientsWireframe: AllRecipientsWireframe = { AllRecipientsWireframe() }()
}
extension LoyalityPointsWireframe: LoyalityPointsWireframeInput {
@ -35,7 +36,7 @@ extension LoyalityPointsWireframe: LoyalityPointsWireframeInput {
func openSendMoneyView() {
if let navVC = view.navigationController {
navVC.push(recipientsWireframe.getMainView(), animated: true)
navVC.push(allRecipientsWireframe.getMainView(), animated: true)
}
}
}
Loading…
Cancel
Save