From e0c5d031f7b7825a683c05637e1021a9d586d65f Mon Sep 17 00:00:00 2001 From: ccr Date: Mon, 31 Dec 2018 09:55:42 +0545 Subject: [PATCH] kftc menu hidden --- GMERemittance/SideMenu/SideMenuViewController.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GMERemittance/SideMenu/SideMenuViewController.swift b/GMERemittance/SideMenu/SideMenuViewController.swift index 859f5c48..0c9c68ca 100644 --- a/GMERemittance/SideMenu/SideMenuViewController.swift +++ b/GMERemittance/SideMenu/SideMenuViewController.swift @@ -70,7 +70,8 @@ class SideMenuViewController: UIViewController { let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser() self.withdrawButton.isHidden = !shouldShowWithdrawButton - self.manageAccountStackView.isHidden = !shouldShowWithdrawButton +// self.manageAccountStackView.isHidden = !shouldShowWithdrawButton + self.manageAccountStackView.isHidden = true self.view.backgroundColor = AppConstants.themeRedColor self.roundedBgView.layer.cornerRadius = 20 self.labelBalance.text = "0" @@ -83,7 +84,7 @@ class SideMenuViewController: UIViewController { self.labelBalance.text = balance let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser() self.withdrawButton.isHidden = !shouldShowWithdrawButton - self.manageAccountStackView.isHidden = !shouldShowWithdrawButton +// self.manageAccountStackView.isHidden = !shouldShowWithdrawButton }