diff --git a/src/frontend/src/components/inputListComponent/index.tsx b/src/frontend/src/components/inputListComponent/index.tsx
index 7b5f87274..5144facb9 100644
--- a/src/frontend/src/components/inputListComponent/index.tsx
+++ b/src/frontend/src/components/inputListComponent/index.tsx
@@ -2,8 +2,9 @@ import { useEffect } from "react";
import { InputListComponentType } from "../../types/components";
import _ from "lodash";
-import { classNames } from "../../utils/utils";
+import { classNames, cn } from "../../utils/utils";
import IconComponent from "../genericIconComponent";
+import { Button } from "../ui/button";
import { Input } from "../ui/input";
export default function InputListComponent({
@@ -54,7 +55,13 @@ export default function InputListComponent({
}
/>
{idx === 0 ? (
-
+
+
) : (
-
+
+
)}
);