Files
supabase/apps/docs/components/AuthSmsProviderConfig/AuthSmsProviderConfig.Warnings.tsx
Kang Ming 3f9e93d659 docs: update phone auth docs (#33135)
* docs: state that whatsapp is only supported for Twilio

* docs: update format in callout

* docs: include twilio verify

* fixing capitalization

---------

Co-authored-by: Brian B (theOtherBrian1) <brian@supabase.io>
2025-01-28 01:22:46 +00:00

28 lines
809 B
TypeScript

import Link from 'next/link'
import { Admonition } from 'ui-patterns/admonition'
const CostWarning = () => (
<Admonition type="warning">
<p>
To keep SMS sending costs under control, make sure you adjust your project&apos;s rate limits
and{' '}
<Link href="/guides/auth/auth-captcha">
<u>configure CAPTCHA</u>
</Link>
. See the{' '}
<Link href="/guides/platform/going-into-prod">
<u>Production Checklist</u>
</Link>{' '}
to learn more.
</p>
<br />
<p>
Some countries have special regulations for services that send SMS messages to users, (e.g
India&apos;s TRAI DLT regulations). Remember to look up and follow the regulations of
countries where you operate.
</p>
</Admonition>
)
export { CostWarning }