From bf424268da1fe8333dce50bef2ed48d14226dcdf Mon Sep 17 00:00:00 2001 From: Bartosz Kaszubowski Date: Mon, 23 Mar 2026 11:12:40 +0100 Subject: [PATCH] add package contributors section based on the repository data --- components/Package/EntityCounter.tsx | 2 +- components/Package/PackageAuthor.tsx | 2 +- components/Package/RepositoryContributors.tsx | 96 +++++++++++++++++++ scenes/PackageOverviewScene.tsx | 13 ++- types/index.ts | 23 +++++ 5 files changed, 129 insertions(+), 7 deletions(-) create mode 100644 components/Package/RepositoryContributors.tsx diff --git a/components/Package/EntityCounter.tsx b/components/Package/EntityCounter.tsx index 0cc18a8f7..407188158 100644 --- a/components/Package/EntityCounter.tsx +++ b/components/Package/EntityCounter.tsx @@ -5,7 +5,7 @@ import { Label } from '~/common/styleguide'; import tw from '~/util/tailwind'; type Props = { - count: number; + count: number | string; style?: StyleProp