Skip to content

Commit dac8b99

Browse files
authored
fix(mui): add initialValue to list of excluded props multi select
1 parent 994aa08 commit dac8b99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mui-component-mapper/src/multiple-choice-list/multiple-choice-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const FinalCheckbox = ({ label, isDisabled: _isDisabled, ...rest }) => {
1212
const {
1313
FormControlLabelProps,
1414
CheckboxProps,
15-
props: { isRequired, isReadOnly, helperText, validate, isDisabled, component, ...props },
15+
props: { initialValue, isRequired, isReadOnly, helperText, validate, isDisabled, component, ...props },
1616
} = useContext(CheckboxContext);
1717
return (
1818
<FormControlLabel

0 commit comments

Comments
 (0)