Skip to content

Commit

Permalink
Converted object to array in phi step
Browse files Browse the repository at this point in the history
  • Loading branch information
hdf1996 committed Oct 28, 2019
1 parent 4159421 commit 6bed7da
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/components/ProtectedHealthInformationStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class ProtectedHealthInformationStep extends Component<Props> {
falseValue = false
) => e => {
const { importData, onChange } = this.props;

onChange({
[type]: values({
...importData[type],
Expand All @@ -44,10 +43,10 @@ class ProtectedHealthInformationStep extends Component<Props> {
const { importData, onChange } = this.props;

onChange({
[type]: {
[type]: values({
...importData[type],
[column]: e.target.value
}
})
});
};

Expand Down

0 comments on commit 6bed7da

Please sign in to comment.