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(); }