From f3ebd7c1079f7bdd0a34f8fc5874ce5c9382ee27 Mon Sep 17 00:00:00 2001 From: Camille Moussu Date: Mon, 25 Aug 2025 09:49:35 +0200 Subject: [PATCH] [#4] added explicit log for 201 --- src/features/Events/EventApi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/Events/EventApi.ts b/src/features/Events/EventApi.ts index dca1c72..2b211ad 100644 --- a/src/features/Events/EventApi.ts +++ b/src/features/Events/EventApi.ts @@ -11,7 +11,7 @@ export async function putEvent(event: CalendarEvent) { }, }); if (response.status === 201) { - console.log("PUT :", response.url); + console.log("PUT (201) :", response.url); } return await response.json(); }