diff --git a/app/connect/page.tsx b/app/connect/page.tsx index 590f9726..1201bd6b 100644 --- a/app/connect/page.tsx +++ b/app/connect/page.tsx @@ -26,7 +26,7 @@ export default function ConnectPage() { // "Gitea", ]; const socialLinks = Object.entries(DATA.contact.social).filter(([name]) => - featuredSocials.includes(name) + featuredSocials.includes(name), ); return ( @@ -35,7 +35,7 @@ export default function ConnectPage() {