ref(ui): Rename files to match remaining exports#112509
Open
ref(ui): Rename files to match remaining exports#112509
Conversation
0eff47d to
f4f08a1
Compare
Base automatically changed from
chromy/ref/remove-use-has-streamlined-ui
to
master
April 10, 2026 10:04
701bef4 to
fe32814
Compare
fe32814 to
f0930cb
Compare
Follow-up to #112465. After removing legacy UI components, several files no longer matched their contents. This renames them to reflect what they actually export: resolutionBox.tsx → resolutionReason.tsx (only exports ResolutionReason) events/styles.tsx → events/dataSection.tsx (only exports DataSection) statusBadge.tsx → getBadgeProperties.tsx (only exports getBadgeProperties) actionableItems.tsx → errorMessages.tsx (only exports ErrorMessage type and getErrorMessage) All import paths updated accordingly. Agent transcript: https://claudescope.sentry.dev/share/e2k0R-zMUZqOtcDaAQ4kCZutdhmRwnSTBSqDOHTHtGo
148016d to
03c57a8
Compare
JonasBa
approved these changes
Apr 10, 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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Rename several files whose names no longer match what they export after
the
useHasStreamlinedUIremoval in #112465 left orphaned names behind:events/styles.tsx→events/dataSection.tsx(exportsDataSection)exception/actionableItems.tsx→exception/errorMessages.tsx(exportsErrorMessage)inboxBadges/statusBadge.tsx→inboxBadges/getBadgeProperties.tsx(exportsgetBadgeProperties)resolutionBox.tsx→resolutionReason.tsx(exportsResolutionReason)All consumer imports are updated to match. No behavior change.