Skip to content

Commit 163d306

Browse files
committed
Remove unknown property
1 parent cdfb983 commit 163d306

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/components/widgets/RadioBlocks.js

Lines changed: 1 addition & 6 deletions
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)