aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/SearchToolbar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/editor/SearchToolbar.tsx')
-rw-r--r--subprojects/frontend/src/editor/SearchToolbar.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/subprojects/frontend/src/editor/SearchToolbar.tsx b/subprojects/frontend/src/editor/SearchToolbar.tsx
index 895f1ca1..a9b9811d 100644
--- a/subprojects/frontend/src/editor/SearchToolbar.tsx
+++ b/subprojects/frontend/src/editor/SearchToolbar.tsx
@@ -27,7 +27,7 @@ const DimLabel = styled(FormControlLabel)(({ theme }) => ({
27 }, 27 },
28})); 28}));
29 29
30function SearchToolbar({ 30export default observer(function SearchToolbar({
31 searchPanelStore, 31 searchPanelStore,
32}: { 32}: {
33 searchPanelStore: SearchPanelStore; 33 searchPanelStore: SearchPanelStore;
@@ -271,6 +271,4 @@ function SearchToolbar({
271 </Stack> 271 </Stack>
272 </Toolbar> 272 </Toolbar>
273 ); 273 );
274} 274});
275
276export default observer(SearchToolbar);