Refactor inputComponent onChange event handler

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-03-21 16:56:39 -03:00
commit 0a1ee6994e

View file

@ -100,9 +100,8 @@ export default function InputComponent({
],
});
}
onChange(e.target.value);
}
onChange(e.target.value);
}}
onKeyDown={(e) => {
handleKeyDown(e, value, "");