Files
supabase/apps/studio/components/interfaces/ProjectCreation/SpecialSymbolsCallout.tsx
2026-04-01 10:22:37 +02:00

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