diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f9589e519..4113062a11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ The types of changes are: ### Removed - Removed the warning about access control migration [#3055](https://github.com/ethyca/fides/pull/3055) +- Remove `customFields` feature flag [#3080](https://github.com/ethyca/fides/pull/3080) ## [2.11.0](https://github.com/ethyca/fides/compare/2.10.0...2.11.0) diff --git a/clients/admin-ui/src/features/common/custom-fields/hooks.ts b/clients/admin-ui/src/features/common/custom-fields/hooks.ts index dd06c5ceb7..2a5495ad0b 100644 --- a/clients/admin-ui/src/features/common/custom-fields/hooks.ts +++ b/clients/admin-ui/src/features/common/custom-fields/hooks.ts @@ -24,8 +24,7 @@ export const useCustomFields = ({ resourceType, }: UseCustomFieldsOptions) => { const { errorAlert, successAlert } = useAlert(); - const { flags, plus } = useFeatures(); - const isEnabled = flags.customFields && plus; + const { plus: isEnabled } = useFeatures(); // This keeps track of the fides key that was initially passed in. If that key started out blank, // then we know the API call will just 404. diff --git a/clients/admin-ui/src/flags.json b/clients/admin-ui/src/flags.json index e4f20b511a..25d50d47a3 100644 --- a/clients/admin-ui/src/flags.json +++ b/clients/admin-ui/src/flags.json @@ -12,12 +12,6 @@ "production": false, "test": false }, - "customFields": { - "description": "Custom fields can be added to many forms throughout Fides. You can create, show, and hide custom fields that you add to Fides at any time.", - "development": true, - "test": true, - "production": false - }, "organizationManagement": { "description": "Management page to configure Organization details for RoPA reporting, messaging, etc.", "development": true,