Skip to content

Commit 3c34de3

Browse files
committed
Remove unused prefix param from PageSocial and don't interpolate Mastodon link title
1 parent 6dd515c commit 3c34de3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/PageSocial.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const socialLinks: SocialLink[] = [
2727
config.mastodon && {
2828
name: 'mastodon',
2929
href: config.mastodon,
30-
title: `Mastodon`,
30+
title: 'Mastodon',
3131
color: "#5a4be1",
3232
icon: FaMastodon
3333
},
@@ -65,7 +65,7 @@ export const socialLinks: SocialLink[] = [
6565
},
6666
].filter(Boolean)
6767

68-
export function PageSocial(prefix: string) {
68+
export function PageSocial() {
6969
return (
7070
<>
7171
<div className={styles.pageSocial}>

0 commit comments

Comments
 (0)