import React from "react"; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from "@/components/ui/alert-dialog"; import { Button } from "@/components/ui/button"; import { api } from "@/utils/api"; import { TrashIcon } from "lucide-react"; import { toast } from "sonner"; interface Props { certificateId: string; } export const DeleteCertificate = ({ certificateId }: Props) => { const { mutateAsync, isLoading } = api.certificates.remove.useMutation(); const utils = api.useUtils(); return ( Are you absolutely sure? This action cannot be undone. This will permanently delete the certificate. Cancel { await mutateAsync({ certificateId, }) .then(async () => { utils.certificates.all.invalidate(); utils.auth.get.invalidate(); toast.success("Certificate delete succesfully"); }) .catch(() => { toast.error("Error to delete the Certificate"); }); }} > Confirm ); };