You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type ValidationError struct {
Errors map[string][]error
}
// Returns first error.
func (err ValidationError) Error() {
for k, errs := range err.Errors {
return k + " value had " + errs[0].Error()
}
}
The text was updated successfully, but these errors were encountered:
I see this is controversy but I give it a try:
The text was updated successfully, but these errors were encountered: