site: reduce printWidth to 80 (#4437)

Resolves #4435
This commit is contained in:
Ammar Bandukwala
2022-10-10 12:33:35 -05:00
committed by GitHub
parent cb54986d3f
commit 85c679597c
274 changed files with 3238 additions and 1173 deletions

View File

@ -12,7 +12,9 @@ namespace Helpers {
export const requiredValidationMsg = "required"
export const Component: FC<
React.PropsWithChildren<Omit<FormTextFieldProps<FormValues>, "form" | "formFieldName">>
React.PropsWithChildren<
Omit<FormTextFieldProps<FormValues>, "form" | "formFieldName">
>
> = (props) => {
const form = useFormik<FormValues>({
initialValues: {
@ -26,7 +28,9 @@ namespace Helpers {
}),
})
return <FormTextField<FormValues> {...props} form={form} formFieldName="name" />
return (
<FormTextField<FormValues> {...props} form={form} formFieldName="name" />
)
}
}