Skip to content

Commit 749e559

Browse files
committed
fix: restore missing internal CSS class
Fixes #356
1 parent edfc280 commit 749e559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MDXEditor.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const RichTextEditor: React.FC = () => {
6565
<Child key={index} />
6666
))}
6767
<RenderRecursiveWrappers wrappers={editorWrappers}>
68-
<div className={(classNames(styles.rootContentEditableWrapper), 'mdxeditor-root-contenteditable')}>
68+
<div className={classNames(styles.rootContentEditableWrapper, 'mdxeditor-root-contenteditable')}>
6969
<RichTextPlugin
7070
contentEditable={<ContentEditable className={classNames(styles.contentEditable, contentEditableClassName)} />}
7171
placeholder={

0 commit comments

Comments
 (0)