diff --git a/common/app/routes/Jobs/components/Show.jsx b/common/app/routes/Jobs/components/Show.jsx index aa48868829..b15a6b154d 100644 --- a/common/app/routes/Jobs/components/Show.jsx +++ b/common/app/routes/Jobs/components/Show.jsx @@ -30,12 +30,12 @@ function generateMessage( ) { if (!isSignedIn) { - return 'Must be singed in to apply'; + return 'Must be signed in to apply'; } if (isFrontEndCertReq && !isFrontEndCert) { - return 'Job requires applicant be Front End Certified'; + return 'You must earn your Full Stack Certification to apply'; } - return 'Job requires applicant be Full Stack Certified'; + return 'You must earn your Front End Certification to apply'; } export default contain( @@ -43,8 +43,12 @@ export default contain( stores: ['appStore', 'jobsStore'], fetchWaitFor: 'jobsStore', fetchAction: 'jobActions.getJob', - combineLatest({ isFrontEndCert, isFullStackCert }, { currentJob }) { + combineLatest( + { username, isFrontEndCert, isFullStackCert }, + { currentJob } + ) { return { + username, job: currentJob, isFrontEndCert, isFullStackCert diff --git a/common/app/routes/Jobs/components/ShowJob.jsx b/common/app/routes/Jobs/components/ShowJob.jsx index f24f058539..ca1fd6565a 100644 --- a/common/app/routes/Jobs/components/ShowJob.jsx +++ b/common/app/routes/Jobs/components/ShowJob.jsx @@ -47,7 +47,7 @@ export default React.createClass({