diff --git a/src/applications/medical-copays/components/AlertView.jsx b/src/applications/medical-copays/components/AlertView.jsx index ac85fc70b21f..ceecfe6eef26 100644 --- a/src/applications/medical-copays/components/AlertView.jsx +++ b/src/applications/medical-copays/components/AlertView.jsx @@ -37,7 +37,7 @@ const AlertView = ({ pathname, alertType, error, cdpToggle, hasDebts }) => { return ( <> - + Home Health care Pay your VA copay bill diff --git a/src/applications/medical-copays/containers/DetailPage.jsx b/src/applications/medical-copays/containers/DetailPage.jsx index 883b883abc10..2285f4c1429c 100644 --- a/src/applications/medical-copays/containers/DetailPage.jsx +++ b/src/applications/medical-copays/containers/DetailPage.jsx @@ -45,10 +45,7 @@ const DetailPage = ({ match }) => { return ( <> - + Home Health care Pay your VA copay bill diff --git a/src/applications/medical-copays/containers/HTMLStatementPage.jsx b/src/applications/medical-copays/containers/HTMLStatementPage.jsx index dca33c3ad66a..a821fca77afa 100644 --- a/src/applications/medical-copays/containers/HTMLStatementPage.jsx +++ b/src/applications/medical-copays/containers/HTMLStatementPage.jsx @@ -32,10 +32,7 @@ const HTMLStatementPage = ({ match }) => { return ( <>
- + Home Health care Pay your VA copay bill diff --git a/src/applications/medical-copays/containers/OverviewPage.jsx b/src/applications/medical-copays/containers/OverviewPage.jsx index 29406f89519e..9499994f4091 100644 --- a/src/applications/medical-copays/containers/OverviewPage.jsx +++ b/src/applications/medical-copays/containers/OverviewPage.jsx @@ -59,7 +59,7 @@ const OverviewPage = () => { return ( <>
- + Home Health care Pay your VA copay bill diff --git a/src/applications/medical-copays/tests/e2e/cdp-alert.cypress.spec.js b/src/applications/medical-copays/tests/e2e/cdp-alert.cypress.spec.js index e30b3c97e8ab..9b9e4cb18404 100644 --- a/src/applications/medical-copays/tests/e2e/cdp-alert.cypress.spec.js +++ b/src/applications/medical-copays/tests/e2e/cdp-alert.cypress.spec.js @@ -18,7 +18,7 @@ describe('Medical Copays - CDP Alerts', () => { cy.intercept('GET', '/v0/feature_toggles*', mockFeatureToggles); cy.intercept('GET', '/v0/medical_copays', mockCopays); cy.intercept('GET', '/v0/debts', mockDebt); - cy.visit('/health-care/pay-copay-bill/your-current-balances'); + cy.visit('/health-care/pay-copay-bill/your-current-balances/'); cy.findByTestId('overview-page-title').should('exist'); cy.injectAxe(); cy.findByTestId(`balance-card-${id}`).should('exist'); diff --git a/src/applications/medical-copays/tests/e2e/mcp.cypress.spec.js b/src/applications/medical-copays/tests/e2e/mcp.cypress.spec.js index 7b5f2f6346e6..809db77b73b3 100644 --- a/src/applications/medical-copays/tests/e2e/mcp.cypress.spec.js +++ b/src/applications/medical-copays/tests/e2e/mcp.cypress.spec.js @@ -16,7 +16,7 @@ describe('Medical Copays', () => { cy.login(mockUser); cy.intercept('GET', '/v0/feature_toggles*', mockFeatureToggles); cy.intercept('GET', '/v0/medical_copays', mockCopays); - cy.visit('/health-care/pay-copay-bill/your-current-balances'); + cy.visit('/health-care/pay-copay-bill/your-current-balances/'); cy.findByTestId('overview-page-title').should('exist'); cy.injectAxe(); }); diff --git a/src/applications/medical-copays/tests/e2e/statements.cypress.spec.js b/src/applications/medical-copays/tests/e2e/statements.cypress.spec.js index 2dccde36034b..a924a95f5099 100644 --- a/src/applications/medical-copays/tests/e2e/statements.cypress.spec.js +++ b/src/applications/medical-copays/tests/e2e/statements.cypress.spec.js @@ -18,7 +18,7 @@ describe('Medical Copays', () => { cy.intercept('GET', '/v0/feature_toggles*', mockFeatureToggles); cy.intercept('GET', '/v0/medical_copays', mockCopays); cy.intercept('GET', '/v0/debts', mockDebt); - cy.visit('/health-care/pay-copay-bill/your-current-balances'); + cy.visit('/health-care/pay-copay-bill/your-current-balances/'); cy.findByTestId('overview-page-title').should('exist'); cy.injectAxe(); });