We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b17474 commit 2245bb5Copy full SHA for 2245bb5
app/[locale]/(user)/components/Content.tsx
@@ -18,6 +18,7 @@ const statsInfo: any = graphql(`
18
totalPublishedDatasets
19
totalPublishers
20
totalPublishedUsecases
21
+ totalOrganizations
22
}
23
24
`);
@@ -66,6 +67,11 @@ export const Content = () => {
66
67
// label: 'Users',
68
// count: Stats?.data?.stats?.totalUsers,
69
// },
70
+ {
71
+ label: 'Organizations',
72
+ count: Stats?.data?.stats?.totalOrganizations,
73
+ link: '/publishers',
74
+ },
75
];
76
77
const Sectors = [
0 commit comments