Skip to content

Commit

Permalink
fix group create modal
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed May 8, 2022
1 parent 3a2e0ba commit 4e50e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/groups/GroupCreateModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function GroupCreateModal({ show, onClose }) {
control={
<Checkbox
name="addUserAccountOnJoin"
onChange={(e) => setFieldValue("owningUserID", e.target.checked)}
onChange={(e) => setFieldValue("addUserAccountOnJoin", e.target.checked)}
checked={values.addUserAccountOnJoin}
/>
}
Expand Down

0 comments on commit 4e50e71

Please sign in to comment.