fix/missing-credential-id
Joe Au-Yeung 2023-10-31 10:54:08 -04:00
parent af129f1756
commit ea2fb9c0dc
1 changed files with 1 additions and 2 deletions

View File

@ -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<LocationOption>;