Skip to content

Commit

Permalink
fix: Recurring meeting creates increasing number of Zoom events (#18360)
Browse files Browse the repository at this point in the history
  • Loading branch information
anikdhabal authored Dec 26, 2024
1 parent 860c04b commit a76366c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/app-store/zoomvideo/lib/VideoApiAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const ZoomVideoApiAdapter = (credential: CredentialPayload): VideoApiAdapter =>
recurringEvent,
startTime,
attendees,
}: CalendarEvent): { recurrence: ZoomRecurrence; type: 8 } | undefined => {
}: CalendarEvent): { recurrence: ZoomRecurrence } | undefined => {
if (!recurringEvent) {
return;
}
Expand Down Expand Up @@ -147,7 +147,6 @@ const ZoomVideoApiAdapter = (credential: CredentialPayload): VideoApiAdapter =>
recurrence: {
...recurrence,
},
type: 8,
};
};

Expand Down

0 comments on commit a76366c

Please sign in to comment.