Files
calendar/packages/lib/hooks/useBookerUrl.ts
T
2023-07-25 14:58:57 +05:30

8 lines
285 B
TypeScript

import { useOrgBranding } from "@calcom/features/ee/organizations/context/provider";
import { CAL_URL, WEBAPP_URL } from "@calcom/lib/constants";
export const useBookerUrl = () => {
const orgBranding = useOrgBranding();
return orgBranding?.fullDomain ?? CAL_URL ?? WEBAPP_URL;
};