We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85445ac commit f0abd88Copy full SHA for f0abd88
src/orgs/components/init-org-card.tsx
@@ -38,7 +38,7 @@ export const InitOrgCard = () => {
38
projectCount: initOrg.projects.length,
39
lastFundingAmount,
40
lastFundingDate,
41
- community: [], // TODO: require mw to return community in org details
+ ecosystems: [], // TODO: require mw to return community in org details
42
};
43
return (
44
<OrgCard
src/orgs/core/schemas.ts
@@ -32,7 +32,7 @@ export const orgListItemSchema = orgInfoSchema
32
projectCount: z.number(),
33
lastFundingDate: z.number(),
34
lastFundingAmount: z.number(),
35
- community: z.array(z.string()),
+ ecosystems: z.array(z.string()),
36
}),
37
);
export type OrgListItem = z.infer<typeof orgListItemSchema>;
0 commit comments