Correctly save subheading type when adding new schedule items

Update executive-meetings.tsx to pass the 'kind' parameter in the onCommitAddAttendee function, ensuring subheadings are saved with the correct type.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 77cfe984-2c65-4152-bb7a-0df28274fe66
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 952ae299-fa70-40e4-b4e2-2013e3671e1e
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/c3c252e4-c83d-40ca-9fff-99a3ea60701e/77cfe984-2c65-4152-bb7a-0df28274fe66/piUNOmy
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
riyadhafraa
2026-04-30 12:29:14 +00:00
parent 97f251bab6
commit b23b8bdea9
@@ -1774,8 +1774,8 @@ function ScheduleSection({
onAutoEditTitleConsumed={clearAutoEditTitleId}
pendingAttendee={pendingAttendee}
onStartAddAttendee={startAddAttendee}
onCommitAddAttendee={(type, html) =>
commitAddAttendee(m, type, html)
onCommitAddAttendee={(type, html, kind) =>
commitAddAttendee(m, type, html, kind)
}
onCancelAddAttendee={cancelAddAttendee}
bulkSelectable={effectiveCanMutate}