diff --git a/web/src/components/inputs/common.tsx b/web/src/components/inputs/common.tsx index 5762739..f40072b 100644 --- a/web/src/components/inputs/common.tsx +++ b/web/src/components/inputs/common.tsx @@ -1,4 +1,5 @@ import { Field, FieldProps } from "formik"; +import { classNames } from "../../utils"; interface ErrorFieldProps { name: string; @@ -19,12 +20,14 @@ interface CheckboxFieldProps { name: string; label: string; sublabel?: string; + disabled?: boolean; } const CheckboxField = ({ name, label, - sublabel + sublabel, + disabled }: CheckboxFieldProps) => (