Skip to content

Commit

Permalink
fix(mui): add initialValue to list of excluded props multi select
Browse files Browse the repository at this point in the history
  • Loading branch information
mdomarus authored Jul 10, 2024
1 parent 994aa08 commit dac8b99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const FinalCheckbox = ({ label, isDisabled: _isDisabled, ...rest }) => {
const {
FormControlLabelProps,
CheckboxProps,
props: { isRequired, isReadOnly, helperText, validate, isDisabled, component, ...props },
props: { initialValue, isRequired, isReadOnly, helperText, validate, isDisabled, component, ...props },
} = useContext(CheckboxContext);
return (
<FormControlLabel
Expand Down

0 comments on commit dac8b99

Please sign in to comment.