diff --git a/src/components/applications-launcher-page.tsx b/src/components/applications-launcher-page.tsx index 72751025d..d5b3f194b 100644 --- a/src/components/applications-launcher-page.tsx +++ b/src/components/applications-launcher-page.tsx @@ -733,7 +733,6 @@ export function ApplicationsLauncherWorkspace({ aria-labelledby="tools-home-title" className={cn( "mx-auto w-full max-w-[90rem] overflow-x-hidden px-4 pb-8 text-[color:var(--text)] sm:px-6 lg:px-8", - "pb-[calc(12rem+env(safe-area-inset-bottom))] sm:pb-8", "pt-7 sm:pt-10 lg:pt-14", className, )} @@ -782,13 +781,13 @@ export function ApplicationsLauncherWorkspace({ data-testid="tools-all-tools" className="mx-auto mt-8 grid max-w-[86rem] gap-4 sm:mt-10" > -
+

{copy.allSectionLabel}

-
+
Sort by A to Z diff --git a/tests/ui-tools.spec.ts b/tests/ui-tools.spec.ts index 8b290e6b3..eb795297d 100644 --- a/tests/ui-tools.spec.ts +++ b/tests/ui-tools.spec.ts @@ -418,6 +418,7 @@ test.describe("Clinical KB tools launcher", () => { { path: "/forms", testId: "forms-home", heading: "What do you need from forms?", headingLevel: 1 }, { path: "/differentials", testId: "differentials-home", heading: "Differentials", headingLevel: 1 }, { path: "/favourites", testId: "favourites-hub", heading: "Favourites command library", headingLevel: 1 }, + { path: "/applications", testId: "tools-home", heading: "Tools", headingLevel: 1 }, ] as const) { await gotoLauncher(page, home.path); await expect(page.getByTestId(home.testId)).toBeVisible(); @@ -557,6 +558,7 @@ test.describe("Clinical KB tools launcher", () => { { path: "/services", testId: "services-home", heading: "Find a service", headingLevel: 1 }, { path: "/forms", testId: "forms-home", heading: "What do you need from forms?", headingLevel: 1 }, { path: "/differentials", testId: "differentials-home", heading: "Differentials", headingLevel: 1 }, + { path: "/applications", testId: "tools-home", heading: "Tools", headingLevel: 1 }, ] as const) { await gotoLauncher(page, home.path); await expect(page.getByTestId(home.testId)).toBeVisible();