diff --git a/apps/web/components/ui/form/LocationSelect.tsx b/apps/web/components/ui/form/LocationSelect.tsx index 5eed7c3b8e..65692a3931 100644 --- a/apps/web/components/ui/form/LocationSelect.tsx +++ b/apps/web/components/ui/form/LocationSelect.tsx @@ -2,7 +2,6 @@ import type { GroupBase, Props, SingleValue } from "react-select"; import { components } from "react-select"; import type { EventLocationType } from "@calcom/app-store/locations"; -import type { CredentialDataWithTeamName } from "@calcom/app-store/utils"; import { classNames } from "@calcom/lib"; import invertLogoOnDark from "@calcom/lib/invertLogoOnDark"; import { Select } from "@calcom/ui"; @@ -13,7 +12,7 @@ export type LocationOption = { icon?: string; disabled?: boolean; address?: string; - credential?: CredentialDataWithTeamName; + credentialId?: number; }; export type SingleValueLocationOption = SingleValue;