Skip to content

Commit

Permalink
Merge branch 'refactor-social-icons' into add-more-social-links
Browse files Browse the repository at this point in the history
* refactor-social-icons:
  Remove unused prefix param from PageSocial and don't interpolate Mastodon link title
  • Loading branch information
onnimonni committed Nov 1, 2024
2 parents 08ff1e2 + 3c34de3 commit 2dedfa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/PageSocial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const socialLinks: SocialLink[] = [
config.mastodon && {
name: 'mastodon',
href: config.mastodon,
title: `Mastodon`,
title: 'Mastodon',
color: "#5a4be1",
icon: FaMastodon
},
Expand Down Expand Up @@ -105,7 +105,7 @@ export const socialLinks: SocialLink[] = [
}
].filter(Boolean)

export function PageSocial(prefix: string) {
export function PageSocial() {
return (
<>
<div className={styles.pageSocial}>
Expand Down

0 comments on commit 2dedfa5

Please sign in to comment.