Skip to content

Commit 5d69a6f

Browse files
authored
feat(seer): Show the Seer settings link even when hideAiFeatures is enabled (#112510)
When `hideAiFeatures` is enabled Seer is disabled, that's always the way. `hideAiFeatures` can be quickly toggled from the Settings > General page. What's confusing though is that we also hide the button to Seer in the sidenav. This gave me a freight because i didn't see the Seer button and didn't know why. One of the tenets we've had for a long time is [Disable and Explain](https://develop.sentry.dev/frontend/design-tenets/#disable-and-explain-dont-hide), and we already had a message to explain things. Now we keep the sidebar button, and show the explaination. <img width="1256" height="388" alt="SCR-20260408-kpjo" src="https://github.com/user-attachments/assets/d53557bf-d2e2-453c-a506-ebfdfaf2b608" />
1 parent bd79c6d commit 5d69a6f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

static/app/views/settings/organization/userOrgNavigationConfiguration.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ export function getUserOrgNavigationConfiguration(): NavigationSection[] {
175175
description: t(
176176
"Manage settings for Seer's automated analysis across your organization"
177177
),
178-
show: ({organization}) => !!organization && !organization.hideAiFeatures,
179178
id: 'seer',
180179
},
181180
{

static/app/views/settings/project/navigationConfiguration.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ export function getNavigationConfiguration({
6060
{
6161
path: `${pathPrefix}/seer/`,
6262
title: t('Seer'),
63-
show: () => !organization?.hideAiFeatures,
6463
},
6564
{
6665
path: `${pathPrefix}/user-feedback/`,

0 commit comments

Comments
 (0)