// @ts-nocheck import { ExternalLink } from 'lucide-react' import { Button } from 'ui' import { ScaffoldSection, ScaffoldSectionContent, ScaffoldSectionDetail, } from '@/components/layouts/Scaffold' import { useSendEventMutation } from '@/data/telemetry/send-event-mutation' import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization' export const HIPAA = () => { const { data: organization } = useSelectedOrganizationQuery() const { mutate: sendEvent } = useSendEventMutation() return (

HIPAA

This is only for HIPAA requests. Please ignore this if you already have HIPAA enabled.

Organizations on the Team Plan or above are eligible for a paid HIPAA compliance add-on. You can submit a request here and we will get back to you on the pricing and process for your use case.

Organizations on the Free or Pro Plan can also submit a request for HIPAA. Note that you are still required to upgrade to the Team Plan after your request is approved.

) }