Fix typo
All checks were successful
Build and test backend / Build-backend (pull_request) Successful in 2m1s
Build and test backend / Test-backend (pull_request) Successful in 1m56s
Build and test FrontEnd / Build-frontend (pull_request) Successful in 23s

Merci javascript pour ces erreurs de qualitée...
This commit is contained in:
Debucquoy Anthony 2024-03-09 10:36:20 +01:00
parent 21de520175
commit 0b4b38f6c5

View File

@ -16,7 +16,7 @@ export async function restDelete(endPoint, data) {
}
export async function restPatch(endPoint, data) {
return await _rest(endPoint, {method: "PATCH", body: JSON.stringify(data));
return await _rest(endPoint, {method: "PATCH", body: JSON.stringify(data)});
}
/**