mirror of
https://github.com/supabase/supabase.git
synced 2026-05-19 03:17:08 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
15 lines
438 B
TypeScript
15 lines
438 B
TypeScript
import { InlineLink } from '@/components/ui/InlineLink'
|
|
import { DOCS_URL } from '@/lib/constants'
|
|
|
|
export const SpecialSymbolsCallout = () => {
|
|
return (
|
|
<p className="mb-2">
|
|
Note: If using the Postgres connection string, you will need to{' '}
|
|
<InlineLink href={`${DOCS_URL}/guides/database/postgres/roles#special-symbols-in-passwords`}>
|
|
percent-encode
|
|
</InlineLink>{' '}
|
|
the password
|
|
</p>
|
|
)
|
|
}
|