Skip to content

Commit 34716d2

Browse files
committed
feat(settings): remove default value
Effectively sets checkbox to unchecked (initially)
1 parent 8fcb33a commit 34716d2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/components/common/Settings.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ const Settings = ({ handleSettingsChange }) => {
1414
<Popover
1515
placement="bottomRight"
1616
content={
17-
<Checkbox.Group
18-
onChange={updateCheckboxValues}
19-
defaultValue={[SHOW_LATEST_RCS]}
20-
>
17+
<Checkbox.Group onChange={updateCheckboxValues}>
2118
<div>
2219
<Checkbox value={SHOW_LATEST_RCS}>{SHOW_LATEST_RCS}</Checkbox>
2320
</div>

0 commit comments

Comments
 (0)