|
@@ -2,7 +2,6 @@ import Feature from 'sentry/components/acl/feature';
|
|
|
import NoProjectMessage from 'sentry/components/noProjectMessage';
|
|
|
import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container';
|
|
|
import useOrganization from 'sentry/utils/useOrganization';
|
|
|
-import withPageFilters from 'sentry/utils/withPageFilters';
|
|
|
|
|
|
function MonitorsContainer({children}: {children?: React.ReactNode}) {
|
|
|
const organization = useOrganization();
|
|
@@ -16,4 +15,4 @@ function MonitorsContainer({children}: {children?: React.ReactNode}) {
|
|
|
);
|
|
|
}
|
|
|
|
|
|
-export default withPageFilters(MonitorsContainer);
|
|
|
+export default MonitorsContainer;
|