aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorButtons.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/editor/EditorButtons.tsx')
-rw-r--r--subprojects/frontend/src/editor/EditorButtons.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/subprojects/frontend/src/editor/EditorButtons.tsx b/subprojects/frontend/src/editor/EditorButtons.tsx
index cbe7c424..d2273c6c 100644
--- a/subprojects/frontend/src/editor/EditorButtons.tsx
+++ b/subprojects/frontend/src/editor/EditorButtons.tsx
@@ -32,7 +32,7 @@ function getLintIcon(severity: Diagnostic['severity'] | undefined) {
32 } 32 }
33} 33}
34 34
35function EditorButtons({ 35export default observer(function EditorButtons({
36 editorStore, 36 editorStore,
37}: { 37}: {
38 editorStore: EditorStore | undefined; 38 editorStore: EditorStore | undefined;
@@ -102,6 +102,4 @@ function EditorButtons({
102 </IconButton> 102 </IconButton>
103 </Stack> 103 </Stack>
104 ); 104 );
105} 105});
106
107export default observer(EditorButtons);