From ea2fb9c0dc9c7710491de9fd44d1bcb7b9cc0b04 Mon Sep 17 00:00:00 2001 From: Joe Au-Yeung Date: Tue, 31 Oct 2023 10:54:08 -0400 Subject: [PATCH] Type fix --- apps/web/components/ui/form/LocationSelect.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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;