Skip to content

Commit 4c9be26

Browse files
committed
Remove unknown property
1 parent e563194 commit 4c9be26

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/components/widgets/RadioBlocks.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,7 @@ class RadioBlocks extends Component {
3333
});
3434

3535
return (
36-
<div
37-
className={optionClass}
38-
key={value}
39-
checked={defaultActive}
40-
onClick={() => this.handleChange(value)}
41-
>
36+
<div className={optionClass} key={value} onClick={() => this.handleChange(value)}>
4237
{Icon ? <Icon className="radio-block__icon" /> : null}
4338
{label ? <span>{label}</span> : null}
4439
</div>

0 commit comments

Comments
 (0)