diff --git a/GMERemittance/Module/New Group/kycForm1/User Interface/View/kycForm1ViewController.swift b/GMERemittance/Module/New Group/kycForm1/User Interface/View/kycForm1ViewController.swift index 6c96a317..49d561da 100644 --- a/GMERemittance/Module/New Group/kycForm1/User Interface/View/kycForm1ViewController.swift +++ b/GMERemittance/Module/New Group/kycForm1/User Interface/View/kycForm1ViewController.swift @@ -194,6 +194,14 @@ class KycForm1ViewController: UIViewController { setupErrorTextFields() setupDelegates() self.setupDatePicker() + self.setupEmail() + } + + private func setupEmail() { + if let email = UserDefaults.standard.string(forKey: UserKeys.email) { + self.emailTextField.text = email + self.emailTextField.isUserInteractionEnabled = false + } } private func setupDelegates() {