3714d5faab
* fix: routing form redirects to use app.cal.com instead of cal.com * Update packages/lib/hooks/useBookerUrl.ts Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * update --------- Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
13 lines
426 B
TypeScript
13 lines
426 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;
|
|
};
|
|
|
|
export const useEmbedBookerUrl = () => {
|
|
const orgBranding = useOrgBranding();
|
|
return orgBranding?.fullDomain ?? WEBAPP_URL;
|
|
};
|