Skip to content

Commit a56faf8

Browse files
fix(deps): update dependency @tinymce/tinymce-react to v6 (#2536)
* fix(deps): update dependency @tinymce/tinymce-react to v6 * refactor: validating typing of tinymce-react usage (no runtime changes) --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Braden MacDonald <[email protected]>
1 parent 77215ee commit a56faf8

6 files changed

Lines changed: 137 additions & 133 deletions

File tree

package-lock.json

Lines changed: 16 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"@redux-devtools/extension": "^3.3.0",
6666
"@reduxjs/toolkit": "1.9.7",
6767
"@tanstack/react-query": "5.90.2",
68-
"@tinymce/tinymce-react": "^3.14.0",
68+
"@tinymce/tinymce-react": "^6.0.0",
6969
"classnames": "2.5.1",
7070
"codemirror": "^6.0.0",
7171
"email-validator": "2.0.4",

src/editors/sharedComponents/ImageUploadModal/index.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
import { injectIntl } from '@edx/frontend-platform/i18n';
54
import * as tinyMCEKeys from '../../data/constants/tinyMCE';
65
import ImageSettingsModal from './ImageSettingsModal';
76
import SelectImageModal from './SelectImageModal';
@@ -204,4 +203,4 @@ ImageUploadModal.propTypes = {
204203
};
205204

206205
export const ImageUploadModalInternal = ImageUploadModal; // For testing only
207-
export default injectIntl(ImageUploadModal);
206+
export default ImageUploadModal;

0 commit comments

Comments
 (0)