We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1968a45 commit 6b1d9c8Copy full SHA for 6b1d9c8
frontend/packages/volto-form-block/src/components/Wrappers/RadioGroupWrapper.jsx
@@ -52,7 +52,9 @@ const RadioGroupWrapper = (props) => {
52
isInvalid={error}
53
>
54
{options.map((option) => (
55
- <OptionWidget value={option[0]}>{option[1]}</OptionWidget>
+ <OptionWidget key={option[0]} value={option[0]}>
56
+ {option[1]}
57
+ </OptionWidget>
58
))}
59
</Widget>
60
</FormFieldWrapper>
0 commit comments