fix: inline elements should not wrap by default

This commit is contained in:
Carlos Valente
2026-01-13 21:48:35 +01:00
committed by Carlos Valente
parent 6e5805977a
commit 525999440a
3 changed files with 19 additions and 6 deletions
@@ -14,7 +14,7 @@ export default function InfoNif() {
const handleClick = (address: string) => openLink(address);
return (
<Panel.InlineElements>
<Panel.InlineElements wrap='wrap'>
{data.networkInterfaces.map((nif) => {
// interfaces outside localhost wont have access
if (nif.name === 'localhost' && !isLocalhost) return null;