Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SimNed committed Dec 20, 2024
1 parent 3b1b59c commit 6073694
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/components/activities/content/editors/H5pEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,24 +168,3 @@ export const H5pEditor = ({ id, value = '', onChange = () => {}, onDelete = () =
</EditorContainer>
);
};

// INITIAL COMPONENT CHANGED TO line 90

// <FormControl fullWidth>
// <InputLabel id="select-h5p">Contenu H5P</InputLabel>
// <Select
// labelId="select-h5p"
// id="select-h5p"
// label="Contenu H5P"
// onChange={(event) => {
// onChange(`/h5p/data/${event.target.value}/play`);
// setIsModalOpen(false);
// }}
// >
// {h5pContent.map((h5p) => (
// <MenuItem key={h5p.contentId} value={h5p.contentId}>
// {h5p.title}
// </MenuItem>
// ))}
// </Select>
// </FormControl>

0 comments on commit 6073694

Please sign in to comment.