diff --git a/ui/src/components/StaticIpv4Card.tsx b/ui/src/components/StaticIpv4Card.tsx index 044d2bf..b1d3b50 100644 --- a/ui/src/components/StaticIpv4Card.tsx +++ b/ui/src/components/StaticIpv4Card.tsx @@ -70,6 +70,7 @@ export default function StaticIpv4Card() { // return true; // }, })} + // @ts-expect-error - dns is not a field in the form error={formState.errors.ipv4_static?.dns?.[index]?.message} /> diff --git a/ui/src/components/StaticIpv6Card.tsx b/ui/src/components/StaticIpv6Card.tsx index e9d50ab..f6f4af5 100644 --- a/ui/src/components/StaticIpv6Card.tsx +++ b/ui/src/components/StaticIpv6Card.tsx @@ -47,6 +47,7 @@ export default function StaticIpv6Card() { return true; }, })} + // @ts-expect-error - address is not a field in the form error={formState.errors.ipv6_static?.address?.message} /> @@ -77,6 +78,7 @@ export default function StaticIpv6Card() { return true; }, })} + // @ts-expect-error - dns is not a field in the form error={formState.errors.ipv6_static?.dns?.[index]?.message} />