chore: Remove empty /manage/ admin overview#102988
Merged
Conversation
The admin overview page is empty now. Instead of the default view of `/manage/` being an empty view we can show the environment page instead.
| { | ||
| index: true, | ||
| component: make(() => import('sentry/views/admin/adminOverview')), | ||
| component: make(() => import('sentry/views/admin/adminEnvironment')), |
Contributor
There was a problem hiding this comment.
Bug: Routing Redundancy Impairs Navigation Consistency.
The index route at /manage/ now renders adminEnvironment, but there's also an explicit route at /manage/status/environment/ that renders the same component. This creates duplicate routes for the same content and causes navigation inconsistency—when viewing /manage/, the "Environment" navigation item won't highlight as active since it expects /manage/status/environment/.
aldy505
approved these changes
Nov 8, 2025
Collaborator
aldy505
left a comment
There was a problem hiding this comment.
I don't have write access 😅
dashed
approved these changes
Nov 10, 2025
This was referenced Nov 11, 2025
Jesse-Box
pushed a commit
that referenced
this pull request
Nov 12, 2025
The admin overview page is empty now. Instead of the default view of `/manage/` being an empty view we can show the environment page instead.
andrewshie-sentry
pushed a commit
that referenced
this pull request
Nov 13, 2025
The admin overview page is empty now. Instead of the default view of `/manage/` being an empty view we can show the environment page instead.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The admin overview page is empty now. Instead of the default view of
/manage/being an empty view we can show the environment page instead.