diff --git a/static/app/data/forms/projectIssueGrouping.tsx b/static/app/data/forms/projectIssueGrouping.tsx index 8caf430eb3378..314c39d45e989 100644 --- a/static/app/data/forms/projectIssueGrouping.tsx +++ b/static/app/data/forms/projectIssueGrouping.tsx @@ -44,7 +44,6 @@ const groupingConfigField: Field = { , ]), help: t('Sets the grouping algorithm to be used for new events.'), - visible: ({features}) => features.has('set-grouping-config'), }; export const fields: Record = { @@ -89,7 +88,6 @@ stack.function:malloc -> memory-allocation-error`} ), - visible: true, }, groupingEnhancements: { name: 'groupingEnhancements', @@ -133,7 +131,6 @@ stack.function:mylibrary_* +app`} ), validate: () => [], - visible: true, }, groupingConfig: groupingConfigField, secondaryGroupingConfig: { diff --git a/static/app/views/settings/projectIssueGrouping/index.tsx b/static/app/views/settings/projectIssueGrouping/index.tsx index 951f42df26e2e..1bb046059593b 100644 --- a/static/app/views/settings/projectIssueGrouping/index.tsx +++ b/static/app/views/settings/projectIssueGrouping/index.tsx @@ -1,7 +1,6 @@ import type {RouteComponentProps} from 'react-router'; import {hasEveryAccess} from 'sentry/components/acl/access'; -import Feature from 'sentry/components/acl/feature'; import Form from 'sentry/components/forms/form'; import JsonForm from 'sentry/components/forms/jsonForm'; import ExternalLink from 'sentry/components/links/externalLink'; @@ -100,18 +99,6 @@ export default function ProjectIssueGrouping({organization, project, params}: Pr title={t('Stack Trace Rules')} fields={[fields.groupingEnhancements]} /> - - - - );