Files
supabase/apps/studio/components/interfaces/Support/IPV4SuggestionAlert.tsx
Gildas Garcia 0713a1efc1 chore: remove shadcn suffix for Input, Textarea, Alert and Collapsible (#45867)
## Problem

Now that we migrated old components to their new shadcn alternatives, we
don't need the `_Shadcn_` suffix anymore.

## Solution

Remove it

<img width="659" height="609" alt="image"
src="https://github.com/user-attachments/assets/2d7271a9-066a-4dcc-92fe-729b106d2c2f"
/>
2026-05-15 14:55:37 +02:00

34 lines
1.0 KiB
TypeScript

import { ExternalLink, HelpCircle } from 'lucide-react'
import Link from 'next/link'
import { Alert, AlertDescription, AlertTitle, Button } from 'ui'
export const IPV4SuggestionAlert = () => {
return (
<Alert variant="default">
<HelpCircle strokeWidth={2} />
<AlertTitle>Connection issues?</AlertTitle>
<AlertDescription className="grid gap-3">
<p>
Having trouble connecting to your project? It could be related to our migration from
PGBouncer and IPv4.
</p>
<p>
Please review this GitHub discussion. It's up to date and covers many frequently asked
questions.
</p>
<p>
<Button asChild type="default" icon={<ExternalLink strokeWidth={1.5} />}>
<Link
target="_blank"
rel="noreferrer"
href="https://github.com/orgs/supabase/discussions/17817"
>
PGBouncer and IPv4 Deprecation #17817
</Link>
</Button>
</p>
</AlertDescription>
</Alert>
)
}