Files
supabase/apps/studio/components/layouts/AppLayout/EnableBranchingButton/BranchingPostgresVersionNotice.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

35 lines
1.2 KiB
TypeScript

import { useParams } from 'common'
import { AlertCircleIcon } from 'lucide-react'
import Link from 'next/link'
import { Alert, AlertDescription, AlertTitle, Button } from 'ui'
import { useAppStateSnapshot } from '@/state/app-state'
export const BranchingPostgresVersionNotice = () => {
const { ref } = useParams()
const snap = useAppStateSnapshot()
return (
<Alert className="rounded-none px-7 py-6 [&>svg]:top-6 [&>svg]:left-6 border-t-0! border-l-0! border-r-0!">
<AlertCircleIcon />
<AlertTitle className="text-base">
Your project needs to be on Postgres 15 to enable branching
</AlertTitle>
<AlertDescription>
Head over to your project's infrastructure settings to upgrade to the latest version of
Postgres before enabling branching.
</AlertDescription>
<AlertDescription>
<Button size="tiny" type="default" className="mt-4">
<Link
href={`/project/${ref}/settings/infrastructure`}
onClick={() => snap.setShowCreateBranchModal(false)}
>
Head to project settings
</Link>
</Button>
</AlertDescription>
</Alert>
)
}