Browse Source

chore(settings): Mark the Remote Config settings page as experimental (#72510)

![SCR-20240611-ixdn](https://github.com/getsentry/sentry/assets/187460/a3f51c37-18af-4f29-9bf4-ee48e5964afd)
Ryan Albrecht 9 months ago
parent
commit
7f1a0318f3
1 changed files with 2 additions and 0 deletions
  1. 2 0
      static/app/views/settings/project/navigationConfiguration.tsx

+ 2 - 0
static/app/views/settings/project/navigationConfiguration.tsx

@@ -1,3 +1,4 @@
+import FeatureBadge from 'sentry/components/badge/featureBadge';
 import {t} from 'sentry/locale';
 import type {Organization} from 'sentry/types/organization';
 import type {Project} from 'sentry/types/project';
@@ -142,6 +143,7 @@ export default function getConfiguration({
         },
         {
           path: `${pathPrefix}/remote-config/`,
+          badge: () => <FeatureBadge type="experimental" />,
           title: t('Remote Config'),
           description: t("View and manage the project's Remote Configuration"),
           show: organization?.features.includes('remote-config'),