- Fixed events fetching in family view because there are events that don't have the private field

- Implemented marking events as private
This commit is contained in:
Dejan
2025-01-17 02:00:36 +01:00
parent 9c3b9b3663
commit 413164128b
3 changed files with 8 additions and 11 deletions

View File

@ -12,5 +12,6 @@ export interface EventData {
reminders?: string[]
id?: string | number,
attendees?: string[],
location?: string
location?: string,
private?: boolean
}