diff --git a/static/app/views/settings/organizationGeneralSettings/aiFeatureSettings.tsx b/static/app/views/settings/organizationGeneralSettings/aiFeatureSettings.tsx
index bfd862a1c03979..00c2599638c13c 100644
--- a/static/app/views/settings/organizationGeneralSettings/aiFeatureSettings.tsx
+++ b/static/app/views/settings/organizationGeneralSettings/aiFeatureSettings.tsx
@@ -14,12 +14,15 @@ export const makeHideAiFeaturesField = (organization: Organization): FieldObject
return {
name: 'hideAiFeatures',
type: 'boolean',
- label: t('Enable Generative AI features'),
- help: tct('Enables [docs:features] powered by Generative AI', {
- docs: (
-
- ),
- }),
+ label: t('Show Generative AI Features'),
+ help: tct(
+ 'Allows organization members to access [docs:features] powered by generative AI',
+ {
+ docs: (
+
+ ),
+ }
+ ),
defaultValue: defaultEnableSeerFeaturesValue(organization),
disabled: ({access}) => !access.has('org:write'),
getValue: value => {
diff --git a/static/app/views/settings/organizationGeneralSettings/organizationSettingsForm.spec.tsx b/static/app/views/settings/organizationGeneralSettings/organizationSettingsForm.spec.tsx
index d1902d2e12f890..87c0c8c9038003 100644
--- a/static/app/views/settings/organizationGeneralSettings/organizationSettingsForm.spec.tsx
+++ b/static/app/views/settings/organizationGeneralSettings/organizationSettingsForm.spec.tsx
@@ -175,7 +175,7 @@ describe('OrganizationSettingsForm', function () {
);
});
- it('can toggle "Enable Seer Features"', async function () {
+ it('can toggle "Show Generative AI Features"', async function () {
// Default org fixture has hideAiFeatures: false, so Seer is enabled by default
const hiddenAiOrg = OrganizationFixture({hideAiFeatures: true});
render(
@@ -192,7 +192,7 @@ describe('OrganizationSettingsForm', function () {
});
const checkbox = screen.getByRole('checkbox', {
- name: 'Enable Generative AI features',
+ name: 'Show Generative AI Features',
});
// Inverted from hideAiFeatures
@@ -245,7 +245,7 @@ describe('OrganizationSettingsForm', function () {
}
);
- const toggle = screen.getByRole('checkbox', {name: 'Enable Generative AI features'});
+ const toggle = screen.getByRole('checkbox', {name: 'Show Generative AI Features'});
expect(toggle).toBeEnabled();
});
});