SpecialSymbolsCallout.tsx14 lines · main
1import { InlineLink } from '@/components/ui/InlineLink'
2import { DOCS_URL } from '@/lib/constants'
3
4export const SpecialSymbolsCallout = () => {
5 return (
6 <p className="mb-2">
7 Note: If using the Postgres connection string, you will need to{' '}
8 <InlineLink href={`${DOCS_URL}/guides/database/postgres/roles#special-symbols-in-passwords`}>
9 percent-encode
10 </InlineLink>{' '}
11 the password
12 </p>
13 )
14}