Skip to content

Commit 4dbe044

Browse files
refactor: remove unused imports and stale TODO comment from caleventparser.ts (calcom#28096)
* refactor: replace manual provider logic with getAppFromLocationValue * chore: revert changes and remove stale comment --------- Co-authored-by: Romit <85230081+romitg2@users.noreply.github.com>
1 parent f1ae5f7 commit 4dbe044

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

packages/lib/CalEventParser.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import type { TFunction } from "i18next";
22
import short from "short-uuid";
3-
import { v5 as uuidv5 } from "uuid";
43

54
import getLabelValueMapFromResponses from "@calcom/lib/bookings/getLabelValueMapFromResponses";
65
import { Prisma } from "@calcom/prisma/client";
76
import type {
87
AdditionalInformation,
98
AppsStatus,
10-
CalendarEvent,
119
CalEventResponses,
1210
Person,
1311
RecurringEvent,
@@ -194,7 +192,6 @@ export const getLocation = (calEvent: {
194192
};
195193

196194
export const getProviderName = (location?: string | null): string => {
197-
// TODO: use getAppName from @calcom/app-store
198195
if (location && location.includes("integrations:")) {
199196
let locationName = location.split(":")[1];
200197
if (locationName === "daily") {

0 commit comments

Comments
 (0)