aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/editor/EditorArea.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/src/main/js/editor/EditorArea.tsx')
-rw-r--r--language-web/src/main/js/editor/EditorArea.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/language-web/src/main/js/editor/EditorArea.tsx b/language-web/src/main/js/editor/EditorArea.tsx
index 678a632d..dba20f6e 100644
--- a/language-web/src/main/js/editor/EditorArea.tsx
+++ b/language-web/src/main/js/editor/EditorArea.tsx
@@ -95,8 +95,9 @@ export const EditorArea = observer(() => {
95 95
96 useEffect(() => { 96 useEffect(() => {
97 if (editorParentRef.current === null) { 97 if (editorParentRef.current === null) {
98 // Nothing to clean up. 98 return () => {
99 return () => {}; 99 // Nothing to clean up.
100 };
100 } 101 }
101 102
102 const editorView = new EditorView({ 103 const editorView = new EditorView({