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