Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c31c5f8
chore: save progress
Udit-takkar Dec 16, 2025
505f4df
Merge branch 'main' into feat/custom-location
Udit-takkar Dec 18, 2025
b3bde13
chore:
Udit-takkar Dec 18, 2025
f3b14f5
feat: add input dialog
Udit-takkar Jan 11, 2026
2f5a756
Merge branch 'main' into feat/custom-location
devin-ai-integration[bot] Jan 12, 2026
2dec072
Merge branch 'main' into feat/custom-location
Udit-takkar Jan 13, 2026
3cd5b63
fix: type error
Udit-takkar Jan 13, 2026
0c5bc9a
Merge branch 'main' into feat/custom-location
Udit-takkar Jan 13, 2026
1442eed
feat: mass apply dialog
Udit-takkar Jan 13, 2026
bef63cf
test: per host location
Udit-takkar Jan 13, 2026
d017066
test: fix test
Udit-takkar Jan 13, 2026
2064e9b
Merge branch 'main' into feat/custom-location
Udit-takkar Jan 13, 2026
1aa3ff1
fix: address Cubic AI review feedback (confidence >= 9/10)
devin-ai-integration[bot] Jan 13, 2026
6c79da0
fix: translation
Udit-takkar Jan 13, 2026
6ccf4bc
Merge branch 'main' into feat/custom-location
Udit-takkar Jan 14, 2026
64a8a5b
refactor: improvements
Udit-takkar Jan 14, 2026
85eb061
fix: correct grammar in custom host locations tooltip
devin-ai-integration[bot] Jan 14, 2026
42df0e7
refactor: improvements
Udit-takkar Jan 14, 2026
9bfdba0
fix: auth
Udit-takkar Jan 14, 2026
f11d6ed
fix: check
Udit-takkar Jan 14, 2026
da77c95
refactor: improvements
Udit-takkar Jan 15, 2026
999dc2e
fix: address Cubic AI review feedback (confidence >= 9/10)
devin-ai-integration[bot] Jan 15, 2026
9b901e4
fix: preserve existing host scheduleId when not explicitly provided
devin-ai-integration[bot] Jan 15, 2026
1173a90
fix; type erro
Udit-takkar Jan 15, 2026
9a8da54
fix; type erro
Udit-takkar Jan 15, 2026
9335417
fix; type erro
Udit-takkar Jan 15, 2026
1611ed1
refactor: move repository
Udit-takkar Jan 15, 2026
5b323fe
refactor: move repository
Udit-takkar Jan 15, 2026
182c20f
fix: add singular/plural translations for location_applied_to_hosts
devin-ai-integration[bot] Jan 15, 2026
557bdf5
refactor: feedback
Udit-takkar Jan 16, 2026
5b0b459
fix: type err
Udit-takkar Jan 16, 2026
b47e932
Merge branch 'main' into feat/custom-location
Udit-takkar Jan 16, 2026
8ac0853
fix: use uuid in schema and remove attendee locaiton
Udit-takkar Jan 16, 2026
0cb7b72
fix: type err
Udit-takkar Jan 16, 2026
6963a48
fix: type err
Udit-takkar Jan 16, 2026
93d41bf
fix: validate eventTypeId as integer in massApplyHostLocation schema
devin-ai-integration[bot] Jan 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/web/modules/bookings/components/EventMeta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export const EventMeta = ({
| "isDynamic"
| "fieldTranslations"
| "autoTranslateDescriptionEnabled"
| "enablePerHostLocations"
> | null;
isPending: boolean;
isPrivateLink: boolean;
Expand Down
3 changes: 2 additions & 1 deletion apps/web/modules/bookings/components/event-meta/Details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ type EventDetailsPropsBase = {
| "currency"
| "price"
| "locations"
| "enablePerHostLocations"
| "requiresConfirmation"
| "recurringEvent"
| "length"
Expand Down Expand Up @@ -149,7 +150,7 @@ export const EventDetails = ({ event, blocks = defaultEventDetailsBlocks }: Even
);

case EventDetailBlocks.LOCATION:
if (!event?.locations?.length || isInstantMeeting) return null;
if (!event?.locations?.length || isInstantMeeting || event.enablePerHostLocations) return null;
return (
<EventMetaBlock key={block}>
<AvailableEventLocations locations={event.locations} />
Expand Down
Loading