We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 439f978 commit da375a2Copy full SHA for da375a2
packages/ui-components/src/Containers/Footer/index.tsx
@@ -60,14 +60,15 @@ const Footer: FC<FooterProps> = ({
60
<div className={styles.sectionPrimary}>
61
{slots?.primary}
62
63
- {navigation.footerLinks.slice(0, -1).map(item => (
+ {navigation.footerLinks.slice(0, -1).map((item, index) => (
64
<NavItem
65
key={item.link}
66
type="footer"
67
href={item.link}
68
as={as}
69
pathname={pathname}
70
>
71
+ {index === 0 ? '© ' : ''}
72
{item.text}
73
</NavItem>
74
))}
@@ -82,7 +83,7 @@ const Footer: FC<FooterProps> = ({
82
83
84
85
- © {openJSlink.text}
86
+ {openJSlink.text}
87
88
89
<div className={styles.social}>
0 commit comments