"use client"; import { useState } from "react"; import { useRouter } from "next/navigation"; export default function DeleteMonumentButton() { const [showConfirm, setShowConfirm] = useState(false); const [deleting, setDeleting] = useState(false); const router = useRouter(); const handleDelete = async () => { setDeleting(true); try { const res = await fetch("/api/user/monument", { method: "DELETE" }); if (res.ok) { router.push("/dashboard"); router.refresh(); } else { const data = await res.json(); alert(data.error || "Не успеа бришењето на споменот"); } } catch { alert("Нешто тргна наопаку"); } finally { setDeleting(false); setShowConfirm(false); } }; if (showConfirm) { return (
Дали сте сигурни? Ова ќе го избрише вашиот спомен и сите фотографии трајно.