From eb842c3adb21b9b9960279694880073f0c0e11c8 Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Sun, 15 Mar 2026 17:05:47 +0100 Subject: [PATCH] minor adjustments --- app/connect/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() {