import { useParams } from 'common' import { toast } from 'sonner' import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, Button, } from 'ui' import { useDeleteReplicationTenantMutation } from '@/data/replication/delete-tenant-mutation' interface DisableExternalReplicationDialogProps { open: boolean setOpen: (value: boolean) => void } export const DisableExternalReplicationDialog = ({ open, setOpen, }: DisableExternalReplicationDialogProps) => { const { ref: projectRef } = useParams() const { mutateAsync: deleteReplicationTenant, isPending: isSubmitting } = useDeleteReplicationTenantMutation({ onSuccess: () => { toast.success('External replication has been disabled') setOpen(false) }, }) const onConfirm = async () => { if (!projectRef) return console.error('Project ref is required') await deleteReplicationTenant({ projectRef }) } return ( !isSubmitting && setOpen(open)}> Confirm to disable external replication

This will remove the etl schema and all connected resources from your database. Any active pipelines sending changes to external destinations will stop.

Read replicas are not affected.

Cancel
) }