Bump zod version

This commit is contained in:
Aleksandr Kraiz
2022-05-12 23:24:45 +04:00
parent 3d11924300
commit d4c790c8bf
6 changed files with 201 additions and 250 deletions

View File

@@ -10,10 +10,8 @@ export default class OrionAnalytics {
this.getOverview = this.getOverview.bind(this);
}
getOverview() {
return fetchWithValidation(
`https://${this.apiUrl}/api/stats/overview`,
overviewSchema,
);
}
getOverview = () => fetchWithValidation(
`https://${this.apiUrl}/api/stats/overview`,
overviewSchema,
);
}