feat(replay): Remove flag replay-details-new-ui#105694
Merged
Conversation
The new design changes werent that major so we are removing this flag. (usage was removed in #104246)
| # Enable core Session Replay link in the sidebar | ||
| manager.add("organizations:session-replay-ui", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, default=True, api_expose=True) | ||
| # Enable new UI for replay details page | ||
| manager.add("organizations:replay-details-new-ui", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) |
Contributor
There was a problem hiding this comment.
Removing flag breaks new UI - always shows old UI
The feature flag replay-details-new-ui is being removed from the backend, but frontend code in static/app/views/replays/details.tsx still checks organization.features.includes('replay-details-new-ui') to decide which UI to show. After this removal, the check will always return false, causing users to always see the old UI instead of the new UI. The frontend usage needs to be removed first or simultaneously, making the new UI the unconditional default.
ryan953
approved these changes
Jan 6, 2026
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 new design changes werent that major so we are removing this flag. (usage was removed in #104246, flag removed in https://github.com/getsentry/sentry-options-automator/pull/6052)