diff --git a/src/components/order-form/form/car-body/car-body-select.tsx b/src/components/order-form/form/car-body/car-body-select.tsx index ba14f66..50602ab 100644 --- a/src/components/order-form/form/car-body/car-body-select.tsx +++ b/src/components/order-form/form/car-body/car-body-select.tsx @@ -21,9 +21,10 @@ import { CarBodySelectProps } from './types'; export const CarBodySelect = forwardRef( function CarBodySelect(props, ref) { const handleOptionClick: UseRadioGroupProps['onChange'] = (value) => { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - props.onChange(value); + props.onChange({ + target: { value }, + } as React.ChangeEvent); + onClose(); }; const { value, getRadioProps, getRootProps } = useRadioGroup({