diff --git a/GME Remit/Modules/Home/User Interface/View/Cell/HomeCollectionTableViewCell.swift b/GME Remit/Modules/Home/User Interface/View/Cell/HomeCollectionTableViewCell.swift index 62c40a02..97bb3507 100644 --- a/GME Remit/Modules/Home/User Interface/View/Cell/HomeCollectionTableViewCell.swift +++ b/GME Remit/Modules/Home/User Interface/View/Cell/HomeCollectionTableViewCell.swift @@ -135,7 +135,7 @@ class HomeCollectionTableViewCell: UITableViewCell, UICollectionViewDelegateFlow let transactionReportMenu = HomeCollectionModel() transactionReportMenu.index = 9 transactionReportMenu.title = "transaction_report_text".localized() - transactionReportMenu.icon = #imageLiteral(resourceName: "wallet-transfer") + transactionReportMenu.icon = #imageLiteral(resourceName: "track-transfer") // FIXME: Check Menues. let menus = [sendMoneyMenu, toadaysRateMenu, transactionReportMenu, walletToWalletMenu] diff --git a/GME Remit/Modules/Profile/ProfileChangePasswordViewController.swift b/GME Remit/Modules/Profile/ProfileChangePasswordViewController.swift index ab9388aa..2d41e06a 100644 --- a/GME Remit/Modules/Profile/ProfileChangePasswordViewController.swift +++ b/GME Remit/Modules/Profile/ProfileChangePasswordViewController.swift @@ -46,24 +46,6 @@ class ProfileChangePasswordViewController: UIViewController { // MARK: - Properties - var password = "" { - didSet { - self.textFieldNewPassword.text = password - } - } - - var confirmPassword = "" { - didSet { - self.textFieldConfirmPassword.text = confirmPassword - } - } - - var oldPassword = "" { - didSet { - self.textFieldCurrentPassword.text = oldPassword - } - } - var encryptedPassword: String = "" var encryptedOldPassword = "" var encryptedConfirmPassword = "" @@ -256,11 +238,11 @@ extension ProfileChangePasswordViewController{ @objc private func editingChanged(_ textField: UITextField) { switch textField { case textFieldCurrentPassword: - oldPassword = textField.text ?? "" + encryptedOldPassword = textField.text ?? "" case textFieldNewPassword: - password = textField.text ?? "" + encryptedPassword = textField.text ?? "" case textFieldConfirmPassword: - confirmPassword = textField.text ?? "" + encryptedConfirmPassword = textField.text ?? "" default: break }