From 4f1dccafeb6851954cd8b70e6f6ebcc17b93023f Mon Sep 17 00:00:00 2001 From: Aaron Kriegler Date: Thu, 3 Oct 2024 10:13:52 -0400 Subject: [PATCH 1/2] Intro/Results Page - Update description paragraph --- .../containers/ConfirmationPage.jsx | 20 +++++++++---------- .../containers/IntroductionPage.jsx | 19 ++++++++---------- 2 files changed, 18 insertions(+), 21 deletions(-) diff --git a/src/applications/benefit-eligibility-questionnaire/containers/ConfirmationPage.jsx b/src/applications/benefit-eligibility-questionnaire/containers/ConfirmationPage.jsx index fc675001daef..faff0d1b1704 100644 --- a/src/applications/benefit-eligibility-questionnaire/containers/ConfirmationPage.jsx +++ b/src/applications/benefit-eligibility-questionnaire/containers/ConfirmationPage.jsx @@ -146,20 +146,20 @@ export class ConfirmationPage extends React.Component { return (

- Based on your goals and experiences, we recommend exploring the - benefits listed below. You may be eligible for these benefits, but - please double-check the eligibility requirements before applying. + + Note: This tool is not an application for VA benefits and it doesn't + determine your eligibility for benefits. + {' '} + After you use this tool, you can learn more about eligibility and how + to apply.

- You can filter and sort the recommended benefits. If you want to copy - the link to your personalized results or email the results to - yourself, select the "Save your results" button. + To find VA benefits that may be relevant for you, answer a few + questions about your goals and experiences.

- Please note that this is a recommendation tool, not an eligibility - determination tool. VA determines your eligibility once you apply for - a benefit. You'll need to review the eligibility requirements before - applying for VA benefits. + This is our first version. Right now, this tool focuses on education + and career benefits. We'll add more types of benefits soon.

diff --git a/src/applications/benefit-eligibility-questionnaire/containers/IntroductionPage.jsx b/src/applications/benefit-eligibility-questionnaire/containers/IntroductionPage.jsx index 43ee892563ae..7f851f7e2cc3 100644 --- a/src/applications/benefit-eligibility-questionnaire/containers/IntroductionPage.jsx +++ b/src/applications/benefit-eligibility-questionnaire/containers/IntroductionPage.jsx @@ -12,22 +12,19 @@ const IntroductionPage = ({ router }) => {

- Please note that this is a recommendation tool, not an eligibility - determination tool. + Note: This tool is not an application for VA benefits and it doesn’t + determine your eligibility for benefits. {' '} - VA determines your eligibility once you apply for a benefit. You’ll need - to review the eligibility requirements before applying for VA benefits. + After you use this tool, you can learn more about eligibility and how to + apply.

- Our recommendation tool can help you find benefits and resources that - are specific to your goals, needs, and circumstances. This is our first - version — it’s mostly focused on employment benefits and resources. - Please check in the future for additional benefits and resources. - Welcome to VA — we’re glad to have you. + To find VA benefits that may be relevant for you, answer a few questions + about your goals and experiences.

- We’ll ask you to answer a few quick questions to personalize our - recommendations. + This is our first version. Right now, this tool focuses on education and + career benefits. We’ll add more types of benefits soon.

Date: Thu, 3 Oct 2024 13:29:49 -0400 Subject: [PATCH 2/2] Update review page title --- .../benefit-eligibility-questionnaire/config/form.js | 2 +- .../tests/unit/config/form.unit.spec.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/applications/benefit-eligibility-questionnaire/config/form.js b/src/applications/benefit-eligibility-questionnaire/config/form.js index 2999c18cab38..6b12c4da78ba 100644 --- a/src/applications/benefit-eligibility-questionnaire/config/form.js +++ b/src/applications/benefit-eligibility-questionnaire/config/form.js @@ -73,7 +73,7 @@ export const formConfig = { return 'Your benefits and resources'; } if (isOnReviewPage(currentLocation)) { - return 'Review your entries'; + return 'Review your information'; } return 'Benefit and resource recommendation tool'; }, diff --git a/src/applications/benefit-eligibility-questionnaire/tests/unit/config/form.unit.spec.js b/src/applications/benefit-eligibility-questionnaire/tests/unit/config/form.unit.spec.js index f76775c6512c..2923e9ba7e15 100644 --- a/src/applications/benefit-eligibility-questionnaire/tests/unit/config/form.unit.spec.js +++ b/src/applications/benefit-eligibility-questionnaire/tests/unit/config/form.unit.spec.js @@ -45,10 +45,10 @@ describe('Questionnaire Form - Title Function', () => { expect(title).to.equal('Your benefits and resources'); }); - it('should return "Review your entries" when on the review page', () => { + it('should return "Review your information" when on the review page', () => { const currentLocation = { pathname: '/review-and-submit' }; const title = formConfig.title({ currentLocation }); - expect(title).to.equal('Review your entries'); + expect(title).to.equal('Review your information'); }); it('should return "Benefit and resource recommendation tool" by default', () => {