We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43ac52 commit 4aa8ba8Copy full SHA for 4aa8ba8
apps/site/components/Common/Supporters/index.tsx
@@ -9,7 +9,6 @@ type SupportersListProps = {
9
supporters: Array<Supporters>;
10
};
11
12
-// TODO: Sort supporters by all time contribution amount and link to their Open Collective page
13
const SupportersList: FC<SupportersListProps> = ({ supporters }) => (
14
<div className="flex max-w-full flex-wrap items-center justify-center gap-1">
15
{supporters.map(({ name, image }, i) => (
apps/site/next-data/generators/supportersData.mjs
@@ -23,7 +23,4 @@ async function fetchOpenCollectiveData() {
23
return members;
24
}
25
26
-// TODO: implement github sponsors data fetching
27
-// TODO: implement ramdomizing of supporters
28
-
29
export { fetchOpenCollectiveData };
0 commit comments