aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorPane.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/editor/EditorPane.tsx')
-rw-r--r--subprojects/frontend/src/editor/EditorPane.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/subprojects/frontend/src/editor/EditorPane.tsx b/subprojects/frontend/src/editor/EditorPane.tsx
index df43d2c9..2651726c 100644
--- a/subprojects/frontend/src/editor/EditorPane.tsx
+++ b/subprojects/frontend/src/editor/EditorPane.tsx
@@ -29,7 +29,7 @@ function EditorLoading(): JSX.Element {
29 ); 29 );
30} 30}
31 31
32function EditorPane(): JSX.Element { 32export default observer(function EditorPane(): JSX.Element {
33 const { editorStore } = useRootStore(); 33 const { editorStore } = useRootStore();
34 34
35 return ( 35 return (
@@ -50,6 +50,4 @@ function EditorPane(): JSX.Element {
50 </Box> 50 </Box>
51 </Stack> 51 </Stack>
52 ); 52 );
53} 53});
54
55export default observer(EditorPane);