Skip to content

Commit 2dedfa5

Browse files
committed
Merge branch 'refactor-social-icons' into add-more-social-links
* refactor-social-icons: Remove unused prefix param from PageSocial and don't interpolate Mastodon link title
2 parents 08ff1e2 + 3c34de3 commit 2dedfa5

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
@@ -35,7 +35,7 @@ export const socialLinks: SocialLink[] = [
3535
config.mastodon && {
3636
name: 'mastodon',
3737
href: config.mastodon,
38-
title: `Mastodon`,
38+
title: 'Mastodon',
3939
color: "#5a4be1",
4040
icon: FaMastodon
4141
},
@@ -105,7 +105,7 @@ export const socialLinks: SocialLink[] = [
105105
}
106106
].filter(Boolean)
107107

108-
export function PageSocial(prefix: string) {
108+
export function PageSocial() {
109109
return (
110110
<>
111111
<div className={styles.pageSocial}>

0 commit comments

Comments
 (0)