diff --git a/frontend/src/component/events/EventLog/EventLog.tsx b/frontend/src/component/events/EventLog/EventLog.tsx index e61ca8915c..05b1f2a7ce 100644 --- a/frontend/src/component/events/EventLog/EventLog.tsx +++ b/frontend/src/component/events/EventLog/EventLog.tsx @@ -9,7 +9,6 @@ import theme from 'themes/theme'; import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender'; import { styled } from '@mui/system'; import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig'; -import { useUiFlag } from 'hooks/useUiFlag'; import { EventLogFilters } from './EventLogFilters'; import { useEventLogSearch } from './useEventLogSearch'; import { StickyPaginationBar } from 'component/common/Table/StickyPaginationBar/StickyPaginationBar'; @@ -51,7 +50,7 @@ const Placeholder = styled('li')({ export const EventLog = ({ title, project, feature }: IEventLogProps) => { const { isEnterprise } = useUiConfig(); - const showFilters = useUiFlag('newEventSearch') && isEnterprise(); + const showFilters = isEnterprise(); const { events, total,