Skip to content

Commit

Permalink
Merge pull request #220 from instedd/fix/219-error-in-non-default-date
Browse files Browse the repository at this point in the history
Converted object to array in phi step
  • Loading branch information
Hugo David Farji authored Oct 28, 2019
2 parents 4159421 + 6bed7da commit 77ef477
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 77ef477

Please sign in to comment.