Skip to content

Commit 2245bb5

Browse files
committed
Add total orgs to stats
1 parent 4b17474 commit 2245bb5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/[locale]/(user)/components/Content.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const statsInfo: any = graphql(`
1818
totalPublishedDatasets
1919
totalPublishers
2020
totalPublishedUsecases
21+
totalOrganizations
2122
}
2223
}
2324
`);
@@ -66,6 +67,11 @@ export const Content = () => {
6667
// label: 'Users',
6768
// count: Stats?.data?.stats?.totalUsers,
6869
// },
70+
{
71+
label: 'Organizations',
72+
count: Stats?.data?.stats?.totalOrganizations,
73+
link: '/publishers',
74+
},
6975
];
7076

7177
const Sectors = [

0 commit comments

Comments
 (0)