aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/site-footer.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/layout/site-footer.test.tsx')
-rw-r--r--src/components/organisms/layout/site-footer.test.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/organisms/layout/site-footer.test.tsx b/src/components/organisms/layout/site-footer.test.tsx
index 11ddd7f..3ad4022 100644
--- a/src/components/organisms/layout/site-footer.test.tsx
+++ b/src/components/organisms/layout/site-footer.test.tsx
@@ -7,9 +7,9 @@ const copyright: SiteFooterProps['copyright'] = {
owner: 'Lorem ipsum',
};
-const navItems: SiteFooterProps['navItems'] = [
+const navItems = [
{ id: 'legal-notice', href: '#', label: 'Legal notice' },
-];
+] satisfies SiteFooterProps['navItems'];
describe('SiteFooter', () => {
it('renders the website copyright', () => {