Skip to content

Commit

Permalink
Make "defaultChecked" a not required property
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcnunes committed Jan 27, 2017
1 parent 6eaad55 commit ab0d603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/checkbox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default class Checkbox extends Component {
name: PropTypes.string.isRequired,
label: PropTypes.string.isRequired,
disabled: PropTypes.bool,
defaultChecked: PropTypes.bool.isRequired,
defaultChecked: PropTypes.bool,
onChecked: PropTypes.func.isRequired,
onUnchecked: PropTypes.func.isRequired,
};
Expand Down

0 comments on commit ab0d603

Please sign in to comment.