Merge remote-tracking branch 'origin/main'
Some checks failed
Workflow / ⚫️ Test (push) Has been cancelled
Workflow / ʦ TypeScript (push) Has been cancelled

# Conflicts:
#	docker-compose.yml
This commit is contained in:
T. Zehetbauer
2026-04-01 13:30:00 +02:00
5 changed files with 77 additions and 86 deletions

View File

@@ -80,9 +80,9 @@ export function createMeetingsApi(client: SupabaseClient<Database>) {
.insert({
account_id: input.accountId,
title: input.title,
meeting_date: input.meetingDate,
meeting_date: input.meetingDate || null,
meeting_type: input.meetingType,
location: input.location,
location: input.location || null,
attendees: input.attendees,
remarks: input.remarks,
is_published: input.isPublished,