aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-08-30 19:07:05 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-08-30 19:07:05 +0200
commite41e0391ba843b85a5b2890db95121fa39426a05 (patch)
tree4927c919cf3077ba9abb2cf31155de4d227b3119 /subprojects/frontend/src/editor
parentrefactor(frontend): filter dialog formatting (diff)
downloadrefinery-e41e0391ba843b85a5b2890db95121fa39426a05.tar.gz
refinery-e41e0391ba843b85a5b2890db95121fa39426a05.tar.zst
refinery-e41e0391ba843b85a5b2890db95121fa39426a05.zip
feat(frontend): window pane switcher
Diffstat (limited to 'subprojects/frontend/src/editor')
-rw-r--r--subprojects/frontend/src/editor/EditorButtons.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/subprojects/frontend/src/editor/EditorButtons.tsx b/subprojects/frontend/src/editor/EditorButtons.tsx
index ca51f975..a7ac2f85 100644
--- a/subprojects/frontend/src/editor/EditorButtons.tsx
+++ b/subprojects/frontend/src/editor/EditorButtons.tsx
@@ -20,7 +20,6 @@ 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';
24import type EditorStore from './EditorStore'; 23import type EditorStore from './EditorStore';
25 24
26// Exhastive switch as proven by TypeScript. 25// Exhastive switch as proven by TypeScript.
@@ -106,7 +105,6 @@ export default observer(function EditorButtons({
106 > 105 >
107 <FormatPaint fontSize="small" /> 106 <FormatPaint fontSize="small" />
108 </IconButton> 107 </IconButton>
109 <ConnectButton editorStore={editorStore} />
110 </Stack> 108 </Stack>
111 ); 109 );
112}); 110});