Home / Function/ HIPAA() — supabase Function Reference

HIPAA() — supabase Function Reference

Architecture documentation for the HIPAA() function in HIPAA.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/studio/components/interfaces/Organization/Documents/HIPAA.tsx lines 12–56

export const HIPAA = () => {
  const { data: organization } = useSelectedOrganizationQuery()
  const { mutate: sendEvent } = useSendEventMutation()

  return (
    <ScaffoldSection className="py-12">
      <ScaffoldSectionDetail>
        <h4 className="mb-5">HIPAA</h4>
        <div className="space-y-2 text-sm text-foreground-light [&_p]:m-0">
          <p>
            This is only for HIPAA requests. Please ignore this if you already have HIPAA enabled.
          </p>
          <p>
            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.
          </p>
          <p>
            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.
          </p>
        </div>
      </ScaffoldSectionDetail>
      <ScaffoldSectionContent>
        <div className="@lg:flex items-center justify-center h-full">
          <Button asChild type="default" iconRight={<ExternalLink />}>
            <a
              href="https://forms.supabase.com/hipaa2"
              target="_blank"
              rel="noreferrer noopener"
              onClick={() =>
                sendEvent({
                  action: 'hipaa_request_button_clicked',
                  groups: { organization: organization?.slug ?? 'Unknown' },
                })
              }
            >
              Request HIPAA
            </a>
          </Button>
        </div>
      </ScaffoldSectionContent>
    </ScaffoldSection>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free