Skip to content
Snippets Groups Projects
Unverified Commit b91daebd authored by GyDi's avatar GyDi
Browse files

fix: component warning

parent 9cd6c5c6
No related branches found
No related tags found
No related merge requests found
...@@ -102,8 +102,8 @@ const ProxyItem = (props: Props) => { ...@@ -102,8 +102,8 @@ const ProxyItem = (props: Props) => {
<> <>
{proxy.name} {proxy.name}
{showType && <TypeBox>{proxy.type}</TypeBox>} {showType && <TypeBox component="span">{proxy.type}</TypeBox>}
{showType && proxy.udp && <TypeBox>UDP</TypeBox>} {showType && proxy.udp && <TypeBox component="span">UDP</TypeBox>}
</> </>
} }
/> />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment