Skip to content

Commit e39a665

Browse files
waleedlatif1claude
andcommitted
fix(calcom): simplify required field constraints for booking attendee
The condition field already restricts these to calcom_create_booking, so simplified to required: true. Per Cal.com API docs, email is optional while name and timeZone are required. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 517c4d1 commit e39a665

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/blocks/blocks/calcom.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Return ONLY the timestamp string - no explanations or quotes.`,
119119
type: 'short-input',
120120
placeholder: 'Enter attendee name',
121121
condition: { field: 'operation', value: 'calcom_create_booking' },
122-
required: { field: 'operation', value: 'calcom_create_booking' },
122+
required: true,
123123
},
124124
{
125125
id: 'attendeeEmail',
@@ -134,7 +134,7 @@ Return ONLY the timestamp string - no explanations or quotes.`,
134134
type: 'short-input',
135135
placeholder: 'e.g., America/New_York, Europe/London',
136136
condition: { field: 'operation', value: 'calcom_create_booking' },
137-
required: { field: 'operation', value: 'calcom_create_booking' },
137+
required: true,
138138
},
139139
{
140140
id: 'attendeePhone',

0 commit comments

Comments
 (0)