[#] added alert when importing events with error

This commit is contained in:
Camille Moussu
2025-07-07 17:31:31 +02:00
parent 7e7043b47e
commit 2a1af0b9f5
6 changed files with 54 additions and 6 deletions
@@ -13,7 +13,6 @@ export default function CalendarSelection({
const calendars = useAppSelector((state) => state.calendars.list);
const handleCalendarToggle = (name: string) => {
setSelectedCalendars((prev: string[]) =>
prev.includes(name) ? prev.filter((n) => n !== name) : [...prev, name]
);