Skip to content
This repository has been archived by the owner on May 28, 2018. It is now read-only.

Commit

Permalink
Fix applicant fullname prop
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrohee committed Aug 8, 2017
1 parent 9282b57 commit f1a2805
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class CommitteeAnswerPage extends React.Component {
return (
<div className="container back-content">
<div className="page-header">
<h1>Avis du comité d'engagement pour {this.props.applicantFirstname}</h1>
<h1>Avis du comité d'engagement pour {this.props.applicantFullname}</h1>
</div>
<CommitteeAnswerForm
committeeAnswer={this.state.committeeAnswer}
Expand All @@ -94,7 +94,7 @@ function mapStateToProps(state, ownProps) {
return {
applicationId: ownProps.params.id,
committeeAnswer: state.committeeAnswer,
applicantFirstname: `${state.contact.firstname} ${state.contact.name}`
applicantFullname: `${state.contact.firstname} ${state.contact.name}`
}
}

Expand Down

0 comments on commit f1a2805

Please sign in to comment.