diff --git a/src/app/layouts/default/footer/footer.tsx b/src/app/layouts/default/footer/footer.tsx index d9a78ae55..a910cb453 100644 --- a/src/app/layouts/default/footer/footer.tsx +++ b/src/app/layouts/default/footer/footer.tsx @@ -54,7 +54,7 @@ function Footer({ Support Center - FAQ + FAQ Order Print System Status diff --git a/src/app/layouts/landing/footer/flex.tsx b/src/app/layouts/landing/footer/flex.tsx index d39e698ea..785776278 100644 --- a/src/app/layouts/landing/footer/flex.tsx +++ b/src/app/layouts/landing/footer/flex.tsx @@ -87,15 +87,14 @@ function FlexFooter({data}: Props) { contactFormParams={contactFormParams} /> - Terms of Use - Privacy Notice +
Accessibility Statement + Terms of Use Privacy Notice -
diff --git a/test/src/layouts/layouts.test.tsx b/test/src/layouts/layouts.test.tsx index f9b1bf409..7c3ae61b0 100644 --- a/test/src/layouts/layouts.test.tsx +++ b/test/src/layouts/layouts.test.tsx @@ -101,7 +101,7 @@ describe('layouts/landing', () => { /Unable to find an element/ ); // Default footer has 4 links + 1 link in layout = 5 links - expect(await screen.findAllByRole('link')).toHaveLength(5); + expect(await screen.findAllByRole('link')).toHaveLength(4); }); it('rewrites footer links in portal', async () => { const title = 'some-title'; @@ -128,6 +128,6 @@ describe('layouts/landing', () => { // Default footer has 4 links + 1 link in layout = 5 links const links = await screen.findAllByRole('link'); - expect(links[1]).toHaveAttribute('href', '//a-portal/tos'); + expect(links[1]).toHaveAttribute('href', '//a-portal/accessibility-statement'); }); });