fix: deduplicate UIDs during iCal import to prevent mass failures #113

This commit is contained in:
Linus Rath
2026-03-30 15:06:28 +02:00
parent 1eebec292a
commit 0fb8b81acd
11 changed files with 30 additions and 11 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ interface ICalImportModalProps {
onClose: () => void;
}
const MAX_FILE_SIZE = 5 * 1024 * 1024; // 5MB
const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB
const ACCEPTED_EXTENSIONS = [".ics", ".ical"];
type ImportStep = "select" | "preview" | "importing";