2
0
Files
cal/calcom/packages/lib/hooks/useBookerUrl.ts
2024-08-09 00:39:27 +02: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;
};