Skip to content

Commit

Permalink
DevTools: fix host component filter option title (#32296)
Browse files Browse the repository at this point in the history
Overlook that in #32086, because
of ternany, it is already string literals, so html entities names no
longer needed.
  • Loading branch information
hoxyq authored Feb 3, 2025
1 parent 152bfe3 commit 1f0b03c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -478,8 +478,8 @@ export default function ComponentsSettings({
<option value={ElementTypeForwardRef}>forward ref</option>
<option value={ElementTypeHostComponent}>
{__IS_NATIVE__
? 'host components (e.g. &lt;RCTText&gt;)'
: 'dom nodes (e.g. &lt;div&gt;)'}
? 'host components (e.g. <RCTText>)'
: 'dom nodes (e.g. <div>)'}
</option>
<option value={ElementTypeMemo}>memo</option>
<option value={ElementTypeOtherOrUnknown}>other</option>
Expand Down

0 comments on commit 1f0b03c

Please sign in to comment.