major update
Deploy / lint (push) Failing after 8s
Deploy / test (push) Has been skipped
Deploy / deploy (push) Has been skipped

This commit is contained in:
Dennis Thiessen
2026-02-27 16:08:09 +01:00
parent 61ab24490d
commit 181cfe6588
71 changed files with 7647 additions and 281 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ export class ApiError extends Error {
*/
const apiClient = axios.create({
baseURL: '/api/v1/',
timeout: 30_000,
timeout: 120_000,
headers: { 'Content-Type': 'application/json' },
});
+1 -1
View File
@@ -13,6 +13,6 @@ export function getRankings() {
export function updateWeights(weights: Record<string, number>) {
return apiClient
.put<{ message: string }>('scores/weights', weights)
.put<{ message: string }>('scores/weights', { weights })
.then((r) => r.data);
}