Improve Tabs error message for wrapped TabItem components #11676
+2
−2
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.
Summary
This PR improves the error message thrown by the
<Tabs>component when a non-<TabItem>child is provided.The goal is to clarify that wrapper or custom components around
<TabItem>are currently not supported by the existing validation logic, which checks the direct React element type.Changes
<Tabs>child validation error message to mention unsupported wrapper/custom components.Context
This change is motivated by the discussion in the linked issue, where users attempted to wrap
<TabItem>in custom components and encountered a confusing error.I intentionally started with an error-message-only change to avoid modifying core behavior without guidance, and I’m very open to iterating on this approach if relaxing the validation is preferred.
Related Issue
Link :- #11672