import { env } from "@/src/env.mjs"; export const CloudPrivacyNotice = ({ action }: { action: string }) => env.NEXT_PUBLIC_LANGFUSE_CLOUD_REGION !== undefined ? (
By {action} you are agreeing to our{" "} Terms and Conditions ,{" "} Privacy Policy , and{" "} Cookie Policy . You also confirm that the entered data is accurate.
) : null;