From 9849e077d547f8fd7cd51bebb3af5e29cfcfb91d Mon Sep 17 00:00:00 2001 From: Tim Rohrer Date: Tue, 6 Jan 2026 08:34:35 -0800 Subject: [PATCH 1/2] fix: Make `type` optional. This is the most honest approach given out data set and users' conventions. closes #16 --- src/common/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/types.ts b/src/common/types.ts index 6f6ca52..37618b0 100644 --- a/src/common/types.ts +++ b/src/common/types.ts @@ -75,7 +75,7 @@ type Categories = { communities: Community[] features: Feature[] formats: Format[] - type: Type + type?: Type } type ConferenceOptions = { From 704fc6cb535f206d17fcdb66fe83f16217b7b472 Mon Sep 17 00:00:00 2001 From: Tim Rohrer Date: Tue, 6 Jan 2026 09:32:58 -0800 Subject: [PATCH 2/2] fix: Make type optional. --- src/utils/categorizeMeeting.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/categorizeMeeting.ts b/src/utils/categorizeMeeting.ts index d7c2211..76fe558 100644 --- a/src/utils/categorizeMeeting.ts +++ b/src/utils/categorizeMeeting.ts @@ -22,7 +22,7 @@ export function categorizedMeeting(meeting: MeetingView): Omit< communities: Community[] features: Feature[] formats: Format[] - type: Type + type?: Type } { const { types } = meeting