Skip to content

Commit da375a2

Browse files
authored
fix: move copyright symbol to the correct element
Signed-off-by: Sebastian Beltran <[email protected]>
1 parent 439f978 commit da375a2

File tree

1 file changed

+3
-2
lines changed
  • packages/ui-components/src/Containers/Footer

1 file changed

+3
-2
lines changed

packages/ui-components/src/Containers/Footer/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,15 @@ const Footer: FC<FooterProps> = ({
6060
<div className={styles.sectionPrimary}>
6161
{slots?.primary}
6262

63-
{navigation.footerLinks.slice(0, -1).map(item => (
63+
{navigation.footerLinks.slice(0, -1).map((item, index) => (
6464
<NavItem
6565
key={item.link}
6666
type="footer"
6767
href={item.link}
6868
as={as}
6969
pathname={pathname}
7070
>
71+
{index === 0 ? '© ' : ''}
7172
{item.text}
7273
</NavItem>
7374
))}
@@ -82,7 +83,7 @@ const Footer: FC<FooterProps> = ({
8283
as={as}
8384
pathname={pathname}
8485
>
85-
&copy; {openJSlink.text}
86+
{openJSlink.text}
8687
</NavItem>
8788

8889
<div className={styles.social}>

0 commit comments

Comments
 (0)