Skip to content

Commit 3e8069b

Browse files
committed
Formatting
1 parent e95d75f commit 3e8069b

File tree

1 file changed

+25
-26
lines changed

1 file changed

+25
-26
lines changed

site/components/Form/FormTextField.tsx

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export interface FormFieldProps<T> {
1818
formFieldName: keyof T
1919
}
2020

21-
2221
/**
2322
* FormTextFieldProps extends form-related MUI TextFieldProps with Formik
2423
* props. The passed in form is used to compute error states and configure
@@ -27,31 +26,31 @@ export interface FormFieldProps<T> {
2726
*/
2827
export interface FormTextFieldProps<T>
2928
extends Pick<
30-
TextFieldProps,
31-
| "autoComplete"
32-
| "autoFocus"
33-
| "children"
34-
| "className"
35-
| "disabled"
36-
| "fullWidth"
37-
| "helperText"
38-
| "id"
39-
| "InputLabelProps"
40-
| "InputProps"
41-
| "inputProps"
42-
| "label"
43-
| "margin"
44-
| "multiline"
45-
| "onChange"
46-
| "placeholder"
47-
| "required"
48-
| "rows"
49-
| "select"
50-
| "SelectProps"
51-
| "style"
52-
| "type"
53-
>,
54-
FormFieldProps<T> {
29+
TextFieldProps,
30+
| "autoComplete"
31+
| "autoFocus"
32+
| "children"
33+
| "className"
34+
| "disabled"
35+
| "fullWidth"
36+
| "helperText"
37+
| "id"
38+
| "InputLabelProps"
39+
| "InputProps"
40+
| "inputProps"
41+
| "label"
42+
| "margin"
43+
| "multiline"
44+
| "onChange"
45+
| "placeholder"
46+
| "required"
47+
| "rows"
48+
| "select"
49+
| "SelectProps"
50+
| "style"
51+
| "type"
52+
>,
53+
FormFieldProps<T> {
5554
/**
5655
* eventTransform is an optional transformer on the event data before it is
5756
* processed by formik.

0 commit comments

Comments
 (0)