Skip to content

Commit b7feb50

Browse files
authored
refactor: remove Supporter type definition from partners.ts
1 parent ab0f25e commit b7feb50

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

apps/site/components/Common/Supporters/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { Supporter } from '#site/types';
44
import type { FC } from 'react';
55

66
type SupportersListProps = {
7-
supporters: Array<Supporter>;
7+
supporters: Array<Supporter<'opencollective'>>;
88
};
99

1010
const SupportersList: FC<SupportersListProps> = ({ supporters }) => (

apps/site/types/partners.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,3 @@ export type Partner = {
2929
};
3030

3131
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

Comments
 (0)