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 }