SpecialSymbolsCallout.tsx 438 B

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