Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Within the NHS app, vaccinations app will increase the rate of booking by:

We will increase appointment attendance and reduce the number of 'did not attend' and therefore increase appointment availability by:

- Providing people with details of all their upcoming vaccination appointments, with simple, easy options to cancel or change.
- Providing people with details of all their upcoming vaccination appointments, with simple, easy options to cancel or change

## Developer Setup

Expand Down
4 changes: 2 additions & 2 deletions src/app/our-policies/accessibility/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const AccessibilityStatement = () => {
</a>
.
</p>
<h2>How accessible is Check and book an RSV vaccination?</h2>
<h2>How accessible is {SERVICE_HEADING}?</h2>
<p>
We regularly test our content to Web Content Accessibility Guidelines (WCAG) 2.2 on both mobile and
desktop devices. We follow the NHS service manual guidance on{" "}
Expand Down Expand Up @@ -105,7 +105,7 @@ const AccessibilityStatement = () => {
.
</p>

<h2>Technical information about the accessibility of Check and book an RSV vaccination</h2>
<h2>Technical information about the accessibility of {SERVICE_HEADING}</h2>
<p>
NHS England is committed to making this service accessible, in accordance with the{" "}
<a href="https://www.legislation.gov.uk/uksi/2018/952/contents/made" target="_blank">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe("buildFilteredContentForFluForChildrenAged2to3", () => {
const expected = {
recommendation: {
heading: "The flu vaccine is recommended for children who:",
content: "* are aged 2 or 3 years (born between September 2021 and 31 August 2023)",
content: "* are aged 2 or 3 years",
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const buildFilteredContentForFluForChildrenAged2to3 = async (

const recommendation: HeadingWithContent = {
heading: "The flu vaccine is recommended for children who:",
content: ["* are aged 2 or 3 years (born between September 2021 and 31 August 2023)"].join("\n"),
content: ["* are aged 2 or 3 years"].join("\n"),
};
return { ...standardFilteredContent, callout, recommendation, actions };
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe("buildFilteredContentForFluVaccine", () => {
recommendation: {
heading: "The flu vaccine is recommended if you:",
content:
"* are aged 65 or older (including those who will be 65 by 31 March 2026)\n" +
"* are aged 65 or older\n" +
"* have certain long-term health conditions\n" +
"* are pregnant\n" +
"* live in a care home\n" +
Expand Down
2 changes: 1 addition & 1 deletion src/services/content-api/parsers/custom/flu-vaccine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const buildFilteredContentForFluVaccine = async (apiContent: string): Pro
const recommendation: HeadingWithContent = {
heading: "The flu vaccine is recommended if you:",
content: [
"* are aged 65 or older (including those who will be 65 by 31 March 2026)",
"* are aged 65 or older",
"* have certain long-term health conditions",
"* are pregnant",
"* live in a care home",
Expand Down
Loading