Refactor add new host form

This commit is contained in:
2026-09-20 11:59:50 +01:00
parent 25b64281f8
commit 957f2de13c
8 changed files with 212 additions and 135 deletions
@@ -35,9 +35,12 @@ export default function GrabNextSubnetButton({ onGrab }: Props) {
color="primary"
beforeIcon={<Wand2 size={16} />}
loading={grabbing}
onClick={grabNextSubnet}
onClick={(e) => {
e.preventDefault();
grabNextSubnet();
}}
>
Grab Next Subnet
</Button>
);
}
}