This might be caused by the onChange function is not updating the proper value which is mentioned in the input.
Example:
changeText(event){
this.setState(
{textValue : event.target.value}
);
}
in the onChange function update the mentioned value field.