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

edm-314 text update #32995

Merged
merged 2 commits into from
Nov 14, 2024
Merged
Changes from 1 commit
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
@@ -1,4 +1,4 @@
import React from 'react';

Check warning on line 1 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / App Isolation Annotations

Staged Continuous Deployment App Isolation Conflict

*WARNING* This PR contains changes related to an application that is currently not isolated. As of Feb 3, 2025 deployment may no longer be possible for apps that are not isolated. Please isolate this app from other directories in 'src/applications' to prevent future deployment issues. More information on your app's status can be seen here: https://department-of-veterans-affairs.github.io/veteran-facing-services-tools/frontend-support-dashboard/cross-app-import-report Please reach out to Frontend Platform Support with any questions.
import { connect } from 'react-redux';
import recordEvent from 'platform/monitoring/record-event';
import { focusElement } from 'platform/utilities/ui';
Expand All @@ -17,22 +17,20 @@
}

navigateToPrint = () => {
this.props.router.push('/print');

Check warning on line 20 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/post-911-gib-status/containers/StatusPage.jsx:20:16:'router' is missing in props validation

Check warning on line 20 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/post-911-gib-status/containers/StatusPage.jsx:20:23:'router.push' is missing in props validation

Check warning on line 20 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/post-911-gib-status/containers/StatusPage.jsx:20:16:'router' is missing in props validation

Check warning on line 20 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/post-911-gib-status/containers/StatusPage.jsx:20:23:'router.push' is missing in props validation
};

render() {
const { enrollmentData } = this.props;

Check warning on line 24 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/post-911-gib-status/containers/StatusPage.jsx:24:13:'enrollmentData' is missing in props validation

Check warning on line 24 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/post-911-gib-status/containers/StatusPage.jsx:24:13:'enrollmentData' is missing in props validation
let introText;
let printButton;
if (enrollmentData.veteranIsEligible) {

Check warning on line 27 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/post-911-gib-status/containers/StatusPage.jsx:27:24:'enrollmentData.veteranIsEligible' is missing in props validation

Check warning on line 27 in src/applications/post-911-gib-status/containers/StatusPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/post-911-gib-status/containers/StatusPage.jsx:27:24:'enrollmentData.veteranIsEligible' is missing in props validation
recordEvent({ event: 'post911-status-info-shown' });
introText = (
<div className="va-introtext">
<p>
The information on this page is the same information that’s in your
Certificate of Eligibility (COE) letter for Post-9/11 GI Bill
(Chapter 33) benefits. You can print this page and use it instead of
your COE to show that you qualify for benefits.
You can print your statement and use it instead of your Certificate
of Eligibility (COE) to show that you qualify for benefits.
</p>
</div>
);
Expand Down
Loading