"use client"; import Link from "next/link"; import { Button, buttonVariants } from "../ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from "../ui/dropdown-menu"; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from "../ui/alert-dialog"; import { Input } from "../ui/input"; import { sendAlert } from "@/lib/actions"; import { useRef } from "react"; export function UserActions({ id }: { id: string }) { const alertMessage = useRef(""); return (