From 690ac3fcca16639b64ade7f53528c736ab9c9ab6 Mon Sep 17 00:00:00 2001 From: Naina Maharjan Date: Wed, 24 May 2023 17:21:29 +0545 Subject: [PATCH] commit --- .DS_Store | Bin 12292 -> 12292 bytes .../Wireframe/LoyalityPointsWireframe.swift | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.DS_Store b/.DS_Store index 05b7dc9a24c872b68c9c01644a9b862498791088..2ffc68183c7bc2627ade6df8f51fe84cfe7bd36b 100644 GIT binary patch delta 219 zcmZokXi1oGj9tX$(CX)WM>n1=<7eV*nB1tYJ-I+&B0G}=Hv)DcZV3O)rY>`Vzj^#~I;e-UhAVfWGY>jT<8xmL^+iLE)= wOn`6m2eFd^%$%O{Cr;3roFm2sbLr-v>Ic}7#D$k)5?_Edv9C=;TCU;mPv_#U*m{ zU0jlK@{@pq941YT&Ut)C9nln|;8UQ&&iVkT9%16@h>|tmBG%KecnOrMoip193 y{7CG&05it~&xsRsCg+H8u`kTxc3YW#Wb;q;1MEoRLQrwX6o%r048!2${9FK9n@7U{ diff --git a/GME Remit/Modules/Loyality Points/User Interface/Wireframe/LoyalityPointsWireframe.swift b/GME Remit/Modules/Loyality Points/User Interface/Wireframe/LoyalityPointsWireframe.swift index 94b2041c..6ec85a78 100644 --- a/GME Remit/Modules/Loyality Points/User Interface/Wireframe/LoyalityPointsWireframe.swift +++ b/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) } } }