Skip to content

Commit 1fc6b9b

Browse files
authored
Merge pull request #296 from rvsia/addMissingTestsForMUI
MUI mapper audit fix
2 parents c33da85 + a4dcbee commit 1fc6b9b

File tree

11 files changed

+562
-572
lines changed

11 files changed

+562
-572
lines changed

packages/common/src/multiple-choice-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const MultipleChoiceList = ({ validate, FieldProvider, Wrapper, Checkbox, ...pro
2121
}) => {
2222
const { error, touched } = meta;
2323
const showError = touched && error;
24-
const groupValues = rest.input.value;
24+
const groupValues = rest.input.value || [];
2525
return (
2626
<Wrapper
2727
showError={ showError }

0 commit comments

Comments
 (0)