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
fix(components): fix PlaceholderStyledText <text> is not an HTML tag (#20050)
# Overview
This fixes a minor error that's cluttering up the JavaScript console:
`
Warning: The tag <text> is unrecognized in this browser. If you meant to
render a React component, start its name with an uppercase letter.
`
It looks like `<text>` is only valid inside SVG. For HTML documents,
you're supposed to use `<span>` for a span of text.
## Test Plan and Hands on Testing
Running `vitest`.
## Review requests
I haven't really touched our frontend components before. Does this look
right?
## Risk assessment
Low.
0 commit comments