We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0aa2de + 44253ca commit daa6b51Copy full SHA for daa6b51
1 file changed
src/components/shared/Field.tsx
@@ -1,12 +1,12 @@
1
-import { Field as FormikField } from "formik";
+import { FastField as FormikFastField } from "formik";
2
import { FieldAttributes } from "formik/dist/Field";
3
4
/**
5
* Wrapper for the Formik Fields
6
*/
7
export const Field = (props: FieldAttributes<any>) => {
8
return (
9
- <FormikField
+ <FormikFastField
10
{...props}
11
onKeyDown={(event: KeyboardEvent) => {
12
// Handler for basic html inputs to remove focus, if no custom component is passed
0 commit comments