diff --git a/src/components/elements/input.tsx b/src/components/elements/input.tsx
index 628fc1cb..e32ee352 100644
--- a/src/components/elements/input.tsx
+++ b/src/components/elements/input.tsx
@@ -17,7 +17,7 @@ const Input = ({
name,
onChange,
type,
- className,
+ className = "",
defaultValue,
focus = false,
...rest
diff --git a/src/components/modules/networkIpAssignments.tsx b/src/components/modules/networkIpAssignments.tsx
index 14b5c8a1..819bd9a7 100644
--- a/src/components/modules/networkIpAssignments.tsx
+++ b/src/components/modules/networkIpAssignments.tsx
@@ -1,3 +1,5 @@
+/* eslint-disable @typescript-eslint/no-unsafe-call */
+/* eslint-disable @typescript-eslint/no-unsafe-member-access */
import { useRouter } from "next/router";
import { toast } from "react-hot-toast";
import { type CustomError } from "~/types/errorHandling";
@@ -39,7 +41,7 @@ export const NetworkIpAssignment = () => {
<>
IPv4 assignment
- {network.cidr?.map((cidr) => {
+ {network.cidr?.map((cidr: string) => {
return network?.routes?.some((route) => route.target === cidr) ? (
void;
}
-const CopyIcon = ({ className, onClick, ...rest }: Icon) => (
+const CopyIcon = ({ className = "", onClick, ...rest }: Icon) => (