SpecialSymbolsCallout.tsx14 lines · main
| 1 | import { InlineLink } from '@/components/ui/InlineLink' |
| 2 | import { DOCS_URL } from '@/lib/constants' |
| 3 | |
| 4 | export 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 | } |