test(Form): fix (#2153)

This commit is contained in:
Romain Hamel
2024-09-06 18:58:24 +02:00
committed by GitHub
parent 62a2643a80
commit 8c886279b2
4 changed files with 7 additions and 12 deletions

View File

@@ -30,7 +30,7 @@ export interface FormError<P extends string = string> {
}
export interface FormErrorWithId extends FormError {
id: string
id?: string
}
export type FormSubmitEvent<T> = SubmitEvent & { data: T }