Skip to content

Commit

Permalink
Fix add checkbox for tutorials UI bug (#7466)
Browse files Browse the repository at this point in the history
* fix add checkbox for tutorials ui

* restore graphql files

---------

Co-authored-by: Bobby Kolev <[email protected]>
  • Loading branch information
reactoholic and bobbykolev authored Jan 22, 2025
1 parent 5c15085 commit 5057422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/domain/journey/space/createSpace/CreateSpaceDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ const CreateSpaceDialog = ({ redirectOnComplete = true, onClose, account }: Crea

<Gutters disableGap disablePadding>
<FormControlLabel
value={addTutorialCallouts}
onChange={(event, isChecked) => setAddTutorialCallouts(isChecked)}
checked={addTutorialCallouts}
onChange={(_event, isChecked) => setAddTutorialCallouts(isChecked)}
control={<Checkbox />}
label={<Caption>{t('createSpace.addTutorialsLabel')}</Caption>}
/>
Expand Down

0 comments on commit 5057422

Please sign in to comment.