We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbfaca3 commit ad89356Copy full SHA for ad89356
Sources/Authenticator/Views/Internal/SignUpInputField.swift
@@ -74,13 +74,13 @@ struct SignUpInputField: View {
74
VStack(alignment: .leading) {
75
AnyView(
76
field.content($field.value)
77
- .onChange(of: self.field.value) { _ in
78
- validator.validate()
79
- }
80
- .onAppear {
81
- validator.value = $field.value
82
83
)
+ .onChange(of: self.field.value) { _ in
+ validator.validate()
+ }
+ .onAppear {
+ validator.value = $field.value
84
if case .error(let message) = validator.state, let errorMessage = message {
85
86
field.errorContent(errorMessage)
0 commit comments