Skip to content

Commit 9a764be

Browse files
committed
Fixed typo
1 parent 64ef141 commit 9a764be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/meteor/app/api/server/v1/groups.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const groupsHistoryPropsSchema = withGroupBaseProperties({
8585
});
8686
const isGroupsHistoryProps = ajv.compile<GroupsHistoryProps>(groupsHistoryPropsSchema);
8787

88-
const isGroupsHistoryReponse = ajv.compile({
88+
const isGroupsHistoryResponse = ajv.compile({
8989
type: 'object',
9090
properties: {
9191
success: { type: 'boolean', enum: [true] },
@@ -109,7 +109,7 @@ const groupsHistoryEndpoints = API.v1.get(
109109
authRequired: true,
110110
query: isGroupsHistoryProps,
111111
response: {
112-
200: isGroupsHistoryReponse,
112+
200: isGroupsHistoryResponse,
113113
400: validateBadRequestErrorResponse,
114114
401: validateUnauthorizedErrorResponse,
115115
403: validateForbiddenErrorResponse,

0 commit comments

Comments
 (0)