diff --git a/web/app/components/base/form/components/field/input-type-select/index.tsx b/web/app/components/base/form/components/field/input-type-select/index.tsx index 983b7f1883..279c0ff43e 100644 --- a/web/app/components/base/form/components/field/input-type-select/index.tsx +++ b/web/app/components/base/form/components/field/input-type-select/index.tsx @@ -12,14 +12,14 @@ import Option from './option' type InputTypeSelectFieldProps = { label: string - labeOptions?: Omit + labelOptions?: Omit supportFile: boolean className?: string } & Omit, 'options' | 'value' | 'onChange' | 'CustomTrigger' | 'CustomOption'> const InputTypeSelectField = ({ label, - labeOptions, + labelOptions, supportFile, className, ...customSelectProps @@ -39,7 +39,7 @@ const InputTypeSelectField = ({