We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab0f25e commit b7feb50Copy full SHA for b7feb50
2 files changed
apps/site/components/Common/Supporters/index.tsx
@@ -4,7 +4,7 @@ import type { Supporter } from '#site/types';
4
import type { FC } from 'react';
5
6
type SupportersListProps = {
7
- supporters: Array<Supporter>;
+ supporters: Array<Supporter<'opencollective'>>;
8
};
9
10
const SupportersList: FC<SupportersListProps> = ({ supporters }) => (
apps/site/types/partners.ts
@@ -29,11 +29,3 @@ export type Partner = {
29
30
31
export type PartnerCategory = 'infrastructure' | 'esp';
32
-
33
-export type Supporter = {
34
- name: string;
35
- image: string;
36
- url: string;
37
- profile: string;
38
- source: 'opencollective' | 'github';
39
-};
0 commit comments