Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intro/Results Page - Update description paragraph #32248

Merged
merged 2 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -30,7 +30,7 @@
this.applyInitialSort = this.applyInitialSort.bind(this);
}

applyInitialSort() {

Check warning on line 33 in src/applications/benefit-eligibility-questionnaire/containers/ConfirmationPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/benefit-eligibility-questionnaire/containers/ConfirmationPage.jsx:33:3:applyInitialSort should be placed after handleClick
const hasResults = !!this.props.results.data;
const resultsCount = hasResults ? this.props.results.data.length : 0;
const resultsText = resultsCount === 1 ? 'result' : 'results';
Expand Down Expand Up @@ -146,20 +146,20 @@
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
Loading