diff --git a/src/components/applications-launcher-page.tsx b/src/components/applications-launcher-page.tsx
index a1d1b5635..5bc8fb10c 100644
--- a/src/components/applications-launcher-page.tsx
+++ b/src/components/applications-launcher-page.tsx
@@ -107,7 +107,7 @@ function launcherAppsForSession(canAccessFavourites: boolean): LauncherApp[] {
const toolsLauncherCopy = {
heading: "Tools",
- description: "Assessment, prescribing, and clinical workflows.",
+ description: "Assessment, prescribing, workflows.",
allSectionLabel: "All tools",
countNoun: "tools",
emptyTitle: "No tools match",
diff --git a/src/components/clinical-dashboard/differentials-home.tsx b/src/components/clinical-dashboard/differentials-home.tsx
index 9c4bb75c4..6018bb029 100644
--- a/src/components/clinical-dashboard/differentials-home.tsx
+++ b/src/components/clinical-dashboard/differentials-home.tsx
@@ -1267,7 +1267,7 @@ export function DifferentialsHome({
diff --git a/src/components/clinical-dashboard/medication-prescribing-workspace.tsx b/src/components/clinical-dashboard/medication-prescribing-workspace.tsx
index 574bcd7d7..fa04f1633 100644
--- a/src/components/clinical-dashboard/medication-prescribing-workspace.tsx
+++ b/src/components/clinical-dashboard/medication-prescribing-workspace.tsx
@@ -218,7 +218,7 @@ function MedicationHome({
diff --git a/src/components/forms/forms-home-page.tsx b/src/components/forms/forms-home-page.tsx
index f3ab30ad6..1ae8febde 100644
--- a/src/components/forms/forms-home-page.tsx
+++ b/src/components/forms/forms-home-page.tsx
@@ -116,7 +116,7 @@ export function FormsHomePage() {
diff --git a/tests/therapy-compass-data-recovery.dom.test.tsx b/tests/therapy-compass-data-recovery.dom.test.tsx
index 9e3e9eeee..0fd27ae73 100644
--- a/tests/therapy-compass-data-recovery.dom.test.tsx
+++ b/tests/therapy-compass-data-recovery.dom.test.tsx
@@ -60,17 +60,15 @@ describe("Therapy Compass required data recovery", () => {
expect(await screen.findByRole("status")).toHaveTextContent("Loading therapy library…");
expect(screen.getAllByRole("main")).toHaveLength(1);
- expect(screen.queryByText(/Source-grounded therapy records and clinical pathways/)).not.toBeInTheDocument();
+ expect(screen.queryByText(/Source-grounded therapy records\./)).not.toBeInTheDocument();
expect(screen.queryByRole("heading", { name: "Therapy" })).not.toBeInTheDocument();
release(undefined);
- await waitFor(() =>
- expect(screen.getByText(/1 source-grounded therapy record and clinical pathways/)).toBeInTheDocument(),
- );
+ await waitFor(() => expect(screen.getByText(/1 source-grounded therapy record\./)).toBeInTheDocument());
expect(screen.getByRole("heading", { name: "Therapy" })).toBeInTheDocument();
expect(screen.getAllByRole("main")).toHaveLength(1);
- expect(screen.queryByText(/Source-grounded therapy records and clinical pathways/)).not.toBeInTheDocument();
+ expect(screen.queryByText(/Source-grounded therapy records\./)).not.toBeInTheDocument();
});
it("shows an honest load error, retries all required files, and recovers", async () => {
@@ -91,7 +89,7 @@ describe("Therapy Compass required data recovery", () => {
);
expect(screen.getByRole("status")).toHaveTextContent("Loading therapy library");
- expect(screen.queryByText(/Source-grounded therapy records and clinical pathways/)).not.toBeInTheDocument();
+ expect(screen.queryByText(/Source-grounded therapy records\./)).not.toBeInTheDocument();
expect(screen.queryByRole("heading", { name: "Frequently used therapies" })).not.toBeInTheDocument();
expect(await screen.findByRole("alert")).toHaveTextContent("Therapy Compass could not load");
@@ -101,7 +99,7 @@ describe("Therapy Compass required data recovery", () => {
fireEvent.click(screen.getByRole("button", { name: "Retry" }));
expect(await screen.findByRole("heading", { name: "Therapy" })).toBeInTheDocument();
- expect(screen.getByText(/1 source-grounded therapy record and clinical pathways/)).toBeInTheDocument();
+ expect(screen.getByText(/1 source-grounded therapy record\./)).toBeInTheDocument();
expect(screen.queryByRole("alert")).not.toBeInTheDocument();
await waitFor(() => expect(fetchMock).toHaveBeenCalledTimes(2));
});