diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/LabelledUIKitTextField.swift b/ui/BankingiOSApp/BankingiOSApp/ui/LabelledUIKitTextField.swift index c47dba2e..5bd10352 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/LabelledUIKitTextField.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/LabelledUIKitTextField.swift @@ -19,11 +19,9 @@ struct LabelledUIKitTextField: View { private var focusTextFieldBinding: Binding { Binding( - get: {print("Getting focusTextFieldBinding for \(self.focusTextField)") - return self.focusTextField }, - set: { - self.focusTextField = $0 - }) + get: { self.focusTextField }, + set: { self.focusTextField = $0 } + ) }