Skip to content

Commit f0abd88

Browse files
committed
fix: sync ecosystems prop
1 parent 85445ac commit f0abd88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/orgs/components/init-org-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const InitOrgCard = () => {
3838
projectCount: initOrg.projects.length,
3939
lastFundingAmount,
4040
lastFundingDate,
41-
community: [], // TODO: require mw to return community in org details
41+
ecosystems: [], // TODO: require mw to return community in org details
4242
};
4343
return (
4444
<OrgCard

src/orgs/core/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const orgListItemSchema = orgInfoSchema
3232
projectCount: z.number(),
3333
lastFundingDate: z.number(),
3434
lastFundingAmount: z.number(),
35-
community: z.array(z.string()),
35+
ecosystems: z.array(z.string()),
3636
}),
3737
);
3838
export type OrgListItem = z.infer<typeof orgListItemSchema>;

0 commit comments

Comments
 (0)