Skip to content

Commit

Permalink
fix: restore missing internal CSS class
Browse files Browse the repository at this point in the history
Fixes #356
  • Loading branch information
petyosi committed Feb 9, 2024
1 parent edfc280 commit 749e559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MDXEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const RichTextEditor: React.FC = () => {
<Child key={index} />
))}
<RenderRecursiveWrappers wrappers={editorWrappers}>
<div className={(classNames(styles.rootContentEditableWrapper), 'mdxeditor-root-contenteditable')}>
<div className={classNames(styles.rootContentEditableWrapper, 'mdxeditor-root-contenteditable')}>
<RichTextPlugin
contentEditable={<ContentEditable className={classNames(styles.contentEditable, contentEditableClassName)} />}
placeholder={
Expand Down

0 comments on commit 749e559

Please sign in to comment.