From 63c737b16089d477f2448858cc8f816489d04db1 Mon Sep 17 00:00:00 2001 From: Kieran Date: Fri, 28 Mar 2025 10:31:21 +0000 Subject: [PATCH] feat: remove hard-coded ip6 addr --- src/pages/vm.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/pages/vm.tsx b/src/pages/vm.tsx index 06213d0..675d206 100644 --- a/src/pages/vm.tsx +++ b/src/pages/vm.tsx @@ -70,14 +70,6 @@ export default function VmPage() { return ( <> {state.ip_assignments?.map((i) => ipRow(i, true))} - {ipRow( - { - id: -1, - ip: toEui64("2a13:2c0::", state.mac_address), - gateway: "", - }, - false, - )} ); }