Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/shared/Field.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Field as FormikField } from "formik";
import { FastField as FormikFastField } from "formik";
import { FieldAttributes } from "formik/dist/Field";

/**
* Wrapper for the Formik Fields
*/
export const Field = (props: FieldAttributes<any>) => {
return (
<FormikField
<FormikFastField
{...props}
onKeyDown={(event: KeyboardEvent) => {
// Handler for basic html inputs to remove focus, if no custom component is passed
Expand Down
Loading