import type { TurnstileProps } from "react-turnstile"; import Turnstile from "react-turnstile"; import { CLOUDFLARE_SITE_ID } from "@calcom/lib/constants"; type Props = Omit; export default function TurnstileWidget(props: Props) { if (!CLOUDFLARE_SITE_ID || process.env.NEXT_PUBLIC_IS_E2E) return null; return ; }