diff --git a/x-pack/legacy/plugins/siem/public/components/drag_and_drop/draggable_wrapper.tsx b/x-pack/legacy/plugins/siem/public/components/drag_and_drop/draggable_wrapper.tsx index b9e32ee8979103f..7de7bef772c0a2e 100644 --- a/x-pack/legacy/plugins/siem/public/components/drag_and_drop/draggable_wrapper.tsx +++ b/x-pack/legacy/plugins/siem/public/components/drag_and_drop/draggable_wrapper.tsx @@ -170,12 +170,12 @@ const DraggableWrapperComponent = React.memo( ({ dataProvider, registerProvider, render, truncate, unRegisterProvider }) => { const usePortal = useDraggablePortalContext(); - useEffect(() => { - registerProvider!({ provider: dataProvider }); - return () => { - unRegisterProvider!({ id: dataProvider.id }); - }; - }, []); + // useEffect(() => { + // registerProvider!({ provider: dataProvider }); + // return () => { + // unRegisterProvider!({ id: dataProvider.id }); + // }; + // }, []); return ( diff --git a/x-pack/legacy/plugins/siem/public/components/search_bar/index.tsx b/x-pack/legacy/plugins/siem/public/components/search_bar/index.tsx index 9cf29b5ebef1b75..0876ca69f91a7b5 100644 --- a/x-pack/legacy/plugins/siem/public/components/search_bar/index.tsx +++ b/x-pack/legacy/plugins/siem/public/components/search_bar/index.tsx @@ -150,7 +150,7 @@ const SearchBarComponent = memo updateSearch(updateSearchBar), 0); }; const onRefresh = (payload: { dateRange: TimeRange }) => {