We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da375a2 commit 77b4bc8Copy full SHA for 77b4bc8
2 files changed
packages/i18n/src/locales/en.json
@@ -3,7 +3,7 @@
3
"containers": {
4
"footer": {
5
"links": {
6
- "openJSFoundation": "OpenJS Foundation",
+ "openJSFoundation": "© OpenJS Foundation",
7
"trademarkPolicy": "Trademark Policy",
8
"privacyPolicy": "Privacy Policy",
9
"versionSupport": "Version Support",
packages/ui-components/src/Containers/Footer/index.tsx
@@ -60,15 +60,14 @@ const Footer: FC<FooterProps> = ({
60
<div className={styles.sectionPrimary}>
61
{slots?.primary}
62
63
- {navigation.footerLinks.slice(0, -1).map((item, index) => (
+ {navigation.footerLinks.slice(0, -1).map(item => (
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
))}
0 commit comments