| 1234567891011121314 |
- 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>
- )
- }
|