From 0b4b38f6c555180320ef94b41206a4c497ef9050 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Sat, 9 Mar 2024 10:36:20 +0100 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Merci javascript pour ces erreurs de qualitée... --- frontend/src/rest/restConsumer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/rest/restConsumer.js b/frontend/src/rest/restConsumer.js index 63a0a0d..9e42e49 100644 --- a/frontend/src/rest/restConsumer.js +++ b/frontend/src/rest/restConsumer.js @@ -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)}); } /**