diff --git a/app/components/ProtectedHealthInformationStep.js b/app/components/ProtectedHealthInformationStep.js index 81aa2c8..ad5ae41 100644 --- a/app/components/ProtectedHealthInformationStep.js +++ b/app/components/ProtectedHealthInformationStep.js @@ -31,7 +31,6 @@ class ProtectedHealthInformationStep extends Component { falseValue = false ) => e => { const { importData, onChange } = this.props; - onChange({ [type]: values({ ...importData[type], @@ -44,10 +43,10 @@ class ProtectedHealthInformationStep extends Component { const { importData, onChange } = this.props; onChange({ - [type]: { + [type]: values({ ...importData[type], [column]: e.target.value - } + }) }); };