Skip to content

Commit

Permalink
Update event payload handling to allow optional description
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunkomath committed Jan 25, 2025
1 parent a9ef725 commit 6431c52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const eventInputSchema = z.object({
function handleEventPayload(payload: FormData): {
projectId: number;
name: string;
description: string;
description: string | undefined;
start: Date;
end: Date | null;
allDay: boolean;
Expand Down

0 comments on commit 6431c52

Please sign in to comment.