diff --git a/app/components/Editor.js b/app/components/Editor.js index 4495d54bd..cc92f7845 100644 --- a/app/components/Editor.js +++ b/app/components/Editor.js @@ -110,10 +110,14 @@ const StyledEditor = styled(RichMarkdownEditor)` const EditorTooltip = ({ children, ...props }) => ( - {children} + {children} ); +const Span = styled.span` + outline: none; +`; + const EditorWithRouterAndTheme = withRouter(withTheme(Editor)); export default React.forwardRef((props, ref) => (