lint again
This commit is contained in:
parent
2cac5f05a1
commit
ef09ff6615
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ export interface IValidationResult {
|
||||||
* the overall validity and a feedback UI that can be rendered for more detail.
|
* the overall validity and a feedback UI that can be rendered for more detail.
|
||||||
*/
|
*/
|
||||||
export default function withValidation<T = undefined, D = void>({
|
export default function withValidation<T = undefined, D = void>({
|
||||||
description, hideDescriptionIfValid, deriveData, rules
|
description, hideDescriptionIfValid, deriveData, rules,
|
||||||
}: IArgs<T, D>) {
|
}: IArgs<T, D>) {
|
||||||
return async function onValidate({ value, focused, allowEmpty = true }: IFieldState): Promise<IValidationResult> {
|
return async function onValidate({ value, focused, allowEmpty = true }: IFieldState): Promise<IValidationResult> {
|
||||||
if (!value && allowEmpty) {
|
if (!value && allowEmpty) {
|
||||||
|
|
Loading…
Reference in a new issue