Skip to content

Commit

Permalink
Merge pull request singnet#12 from raamb/master
Browse files Browse the repository at this point in the history
Fixed a typo in ExampleService.js
  • Loading branch information
raamb authored Jan 13, 2019
2 parents 3acab8d + cf12ae4 commit 8b3cad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/service/ExampleService.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class ExampleService extends React.Component {
if (typeof nextProps.response === 'string') {
this.setState({response:nextProps.response});
} else {
this.setState({response: nextProps.responseObject.value});
this.setState({response: nextProps.response.value});
}
}
}
Expand Down

0 comments on commit 8b3cad1

Please sign in to comment.