diff --git a/components/Author/AuthorPage.tsx b/components/Author/AuthorPage.tsx index 7f2c7c09f..ca23498a2 100644 --- a/components/Author/AuthorPage.tsx +++ b/components/Author/AuthorPage.tsx @@ -23,7 +23,9 @@ const AuthorCard: React.FC<{ author: AuthorMetadata }> = ({ author }) => { setIsClient(true) }, []) - const socialsEntries = Object.entries(author.socials ?? {}).filter(([, value]) => !!value) + const socialsEntries = Object.entries(author.socials ?? {}).filter( + ([, value]) => !!value, + ) as unknown as [string, string][] return (