From 072621cee0f858236163ce11d42eca5adb84d205 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sat, 27 Aug 2022 13:02:22 +0200 Subject: refactor(frontend): add eslint-plugin-mobx --- subprojects/frontend/src/editor/SearchToolbar.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'subprojects/frontend/src/editor/SearchToolbar.tsx') 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 }) => ({ }, })); -function SearchToolbar({ +export default observer(function SearchToolbar({ searchPanelStore, }: { searchPanelStore: SearchPanelStore; @@ -271,6 +271,4 @@ function SearchToolbar({ ); -} - -export default observer(SearchToolbar); +}); -- cgit v1.2.3-54-g00ecf