Files
calendar/packages/lib/hooks/useBookerUrl.ts
T
2024-02-13 06:03:45 +00:00

8 lines
293 B
TypeScript

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