8 lines
293 B
TypeScript
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;
|
||
|
|
};
|