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.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/subprojects/frontend/src/editor/EditorButtons.tsx b/subprojects/frontend/src/editor/EditorButtons.tsx
index a7ac2f85..ca51f975 100644
--- a/subprojects/frontend/src/editor/EditorButtons.tsx
+++ b/subprojects/frontend/src/editor/EditorButtons.tsx
@@ -20,6 +20,7 @@ import ToggleButton from '@mui/material/ToggleButton';
20import ToggleButtonGroup from '@mui/material/ToggleButtonGroup'; 20import ToggleButtonGroup from '@mui/material/ToggleButtonGroup';
21import { observer } from 'mobx-react-lite'; 21import { observer } from 'mobx-react-lite';
22 22
23import ConnectButton from './ConnectButton';
23import type EditorStore from './EditorStore'; 24import type EditorStore from './EditorStore';
24 25
25// Exhastive switch as proven by TypeScript. 26// Exhastive switch as proven by TypeScript.
@@ -105,6 +106,7 @@ export default observer(function EditorButtons({
105 > 106 >
106 <FormatPaint fontSize="small" /> 107 <FormatPaint fontSize="small" />
107 </IconButton> 108 </IconButton>
109 <ConnectButton editorStore={editorStore} />
108 </Stack> 110 </Stack>
109 ); 111 );
110}); 112});