1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

Changing label to list components

This commit is contained in:
Jamie Hewitt 2022-04-13 14:41:20 +03:00
parent 931a5e4e9f
commit dfdaaee7d8

View File

@ -20,8 +20,8 @@ export default function NetworkOptions({
}
return (
<div key={chainId}>
<label className={styles.radioLabel} htmlFor={`opt-${chainId}`}>
<ul key={chainId}>
<li className={styles.radioLabel}>
<Button
style="text"
className={styles.button}
@ -29,7 +29,7 @@ export default function NetworkOptions({
>
<NetworkName key={chainId} networkId={chainId} />
</Button>
</label>
</div>
</li>
</ul>
)
}