Skip to content

Commit b04945e

Browse files
committed
chore(client): remove limit on contributors
1 parent 2c74412 commit b04945e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/client/src/widgets/dialogs/about.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function FooterLink(props: {children: ComponentChildren, text: string, url: stri
175175
type HoverCallback = (contributor: Contributor, isHovering: boolean, part: "name" | "role") => void;
176176

177177
function Contributors({data, onHover}: {data: ContributorList, onHover?: HoverCallback}) {
178-
return data.contributors.slice(0, 10).map((c, index, array) => {
178+
return data.contributors.map((c, index, array) => {
179179
return <Fragment key={c.name}>
180180
<ContributorListItem data={c} onHover={onHover} />
181181

0 commit comments

Comments
 (0)