Skip to content

Commit

Permalink
Intro/Results Page - Update description paragraph (#32248)
Browse files Browse the repository at this point in the history
* Intro/Results Page - Update description paragraph

* Update review page title
  • Loading branch information
vetskrieg authored Oct 3, 2024
1 parent 5ec30b0 commit 60c68ac
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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';
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,20 +147,20 @@ export class ConfirmationPage extends React.Component {
return (
<div>
<p>
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.
<b>
Note: This tool is not an application for VA benefits and it doesn't
determine your eligibility for benefits.
</b>{' '}
After you use this tool, you can learn more about eligibility and how
to apply.
</p>
<p>
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.
</p>
<p>
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.
</p>

<SaveResultsModal />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,19 @@ const IntroductionPage = ({ router }) => {
<FormTitle title="Benefit and resource recommendation tool" subtitle="" />
<p>
<b>
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.
</b>{' '}
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.
</p>
<p>
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.
</p>
<p>
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.
</p>
<va-link-action
href="#"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit 60c68ac

Please sign in to comment.