diff --git a/rsconcept/frontend/src/components/Common/Checkbox.tsx b/rsconcept/frontend/src/components/Common/Checkbox.tsx index b3bd74de..ba20f94f 100644 --- a/rsconcept/frontend/src/components/Common/Checkbox.tsx +++ b/rsconcept/frontend/src/components/Common/Checkbox.tsx @@ -7,7 +7,6 @@ export interface CheckboxProps extends Omit, 'className' | 'children' | 'title' | 'value' | 'onClick' > { id?: string label?: string - required?: boolean disabled?: boolean dimensions?: string tooltip?: string @@ -17,7 +16,7 @@ extends Omit, 'className' | 'child } function Checkbox({ - id, required, disabled, tooltip, label, + id, disabled, tooltip, label, dimensions = 'w-fit', value, setValue, ...props }: CheckboxProps) { const cursor = useMemo( @@ -59,7 +58,6 @@ function Checkbox({