Removed accidentally committed print()
This commit is contained in:
parent
d2987dfb35
commit
7d0080477d
|
@ -19,11 +19,9 @@ struct LabelledUIKitTextField: View {
|
|||
|
||||
private var focusTextFieldBinding: Binding<Bool> {
|
||||
Binding<Bool>(
|
||||
get: {print("Getting focusTextFieldBinding for \(self.focusTextField)")
|
||||
return self.focusTextField },
|
||||
set: {
|
||||
self.focusTextField = $0
|
||||
})
|
||||
get: { self.focusTextField },
|
||||
set: { self.focusTextField = $0 }
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue