diff --git a/src/frontend/src/components/IOInputField/index.tsx b/src/frontend/src/components/IOInputField/index.tsx index 68d442648..feec2ce3b 100644 --- a/src/frontend/src/components/IOInputField/index.tsx +++ b/src/frontend/src/components/IOInputField/index.tsx @@ -1,23 +1,20 @@ -import { Textarea } from "../ui/textarea"; -import InputFileComponent from "../inputFileComponent"; import { IOInputProps } from "../../types/components"; +import { Textarea } from "../ui/textarea"; export default function IOInputField({ inputType, value, - onChange, - styleClasses, - placeholder, + updateValue, }: IOInputProps): JSX.Element | undefined { - switch (inputType) { + switch (inputType) { case "TextInput": - return ( -