import { useParams } from 'common' import { toast } from 'sonner' import { Modal } from 'ui' import { useDisableReadOnlyModeMutation } from '@/data/config/project-temp-disable-read-only-mutation' interface ConfirmDisableReadOnlyModeModalProps { visible: boolean onClose: () => void } const ConfirmDisableReadOnlyModeModal = ({ visible, onClose, }: ConfirmDisableReadOnlyModeModalProps) => { const { ref } = useParams() const { mutate: disableReadOnlyMode, isPending } = useDisableReadOnlyModeMutation({ onSuccess: () => { toast.success('Successfully disabled read-only mode for 15 minutes') onClose() }, }) return ( { if (!ref) return console.error('Project ref is required') disableReadOnlyMode({ projectRef: ref }) }} >

This will temporarily allow writes to your database for the{' '} next 15 minutes, during which you can reduce your database size. After deleting data, you should run a vacuum to reclaim as much space as possible.

If your database size has not been sufficiently reduced after 15 minutes, read-only mode will be toggled back on. Otherwise, it will stay disabled.

) } export default ConfirmDisableReadOnlyModeModal