refactor: remove 'mark as important' field and clean up console.log statements

- Remove 'important' field from EventFormFields component and all event modals
- Remove all console.log statements from event create/update flow
- Fix import issues and type compatibility in EventModal
This commit is contained in:
lenhanphung
2025-10-07 15:24:39 +07:00
committed by Benoit TELLIER
parent 202feb3d23
commit 80c1babb7f
5 changed files with 3 additions and 27 deletions
-3
View File
@@ -42,9 +42,6 @@ export async function putEvent(event: CalendarEvent, calOwnerEmail?: string) {
"content-type": "text/calendar; charset=utf-8",
},
});
if (response.status === 201) {
console.log("PUT (201) :", response.url);
}
return response;
}