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 cdfb983 commit 163d306Copy full SHA for 163d306
1 file changed
src/components/widgets/RadioBlocks.js
@@ -33,12 +33,7 @@ class RadioBlocks extends Component {
33
});
34
35
return (
36
- <div
37
- className={optionClass}
38
- key={value}
39
- checked={defaultActive}
40
- onClick={() => this.handleChange(value)}
41
- >
+ <div className={optionClass} key={value} onClick={() => this.handleChange(value)}>
42
{Icon ? <Icon className="radio-block__icon" /> : null}
43
{label ? <span>{label}</span> : null}
44
</div>
0 commit comments