We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9890c1 commit 25ca27bCopy full SHA for 25ca27b
frontend/src/APIClients/matchAPIClient.ts
@@ -102,7 +102,7 @@ export const matchAPIClient = {
102
* @returns Created matches
103
*/
104
createMatches: async (request: MatchCreateRequest): Promise<MatchCreateResponse> => {
105
- const response = await baseAPIClient.post<MatchCreateResponse>('/matches/', request);
+ const response = await baseAPIClient.post<MatchCreateResponse>('/matches', request);
106
return response.data;
107
},
108
0 commit comments