chore(client): remove limit on contributors

This commit is contained in:
Elian Doran
2026-04-19 15:47:13 +03:00
parent 2c744122ca
commit b04945e793

View File

@@ -175,7 +175,7 @@ function FooterLink(props: {children: ComponentChildren, text: string, url: stri
type HoverCallback = (contributor: Contributor, isHovering: boolean, part: "name" | "role") => void;
function Contributors({data, onHover}: {data: ContributorList, onHover?: HoverCallback}) {
return data.contributors.slice(0, 10).map((c, index, array) => {
return data.contributors.map((c, index, array) => {
return <Fragment key={c.name}>
<ContributorListItem data={c} onHover={onHover} />