Fix issue with checkbox click, closes #549.

This commit is contained in:
Mike Cao 2021-04-24 20:56:22 -07:00
parent 930d050698
commit af6ee27031
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ function Checkbox({ name, value, label, onChange }) {
className={styles.input}
type="checkbox"
name={name}
value={value}
defaultChecked={value}
onChange={onChange}
/>
</div>