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 { Ban } from "lucide-react"; import { toast } from "sonner"; interface Props { applicationId: string; } export const StopApplication = ({ applicationId }: Props) => { const { mutateAsync, isLoading } = api.application.stop.useMutation(); const utils = api.useUtils(); return ( Are you absolutely sure to stop the application? This will stop the application Cancel { await mutateAsync({ applicationId, }) .then(async () => { await utils.application.one.invalidate({ applicationId, }); toast.success("Application stopped succesfully"); }) .catch(() => { toast.error("Error to stop the Application"); }); }} > Confirm ); };