You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rounded-corner regression from PR #4706 was fixed in the right user-facing place, but the implementation left a small ownership issue behind. CommentItem became responsible for restoring the inline player's rounded corners, while VideoCommentPlayer remained unaware of that styling contract.
Why this should be cleaned up
The visual contract belongs to the player component, not just one parent usage site.
Summary
The rounded-corner regression from PR #4706 was fixed in the right user-facing place, but the implementation left a small ownership issue behind.
CommentItembecame responsible for restoring the inline player's rounded corners, whileVideoCommentPlayerremained unaware of that styling contract.Why this should be cleaned up
ClipRRectwrapper inCommentItem, which couples the test to one parent implementation detail instead of protecting the player API.Cleanup
VideoCommentPlayer.CommentItemthrough that API instead of wrapping the player externally.CommentItemtesting only the wiring.Standard
This follow-up is needed to keep the no-new-tech-debt standard intact after PR #4706.