diff --git a/src/frontend/src/components/IOInputField/index.tsx b/src/frontend/src/components/IOInputField/index.tsx index 3fc95d3d4..1a8bcb4a9 100644 --- a/src/frontend/src/components/IOInputField/index.tsx +++ b/src/frontend/src/components/IOInputField/index.tsx @@ -8,17 +8,23 @@ export default function IOInputField({ updateValue, }: IOInputProps): JSX.Element | undefined { function handleInputType() { + console.log(inputType); + + const handleUpdateValue = (e) => { + updateValue(e, "text"); + }; + switch (inputType) { case "TextInput": return (