${response}
`); handleSubmit(updatePageBlock)() .then(() => { setToastAlert({ type: "success", title: "Success!", message: "Block description updated successfully.", }); }) .catch(() => { setToastAlert({ type: "error", title: "Error!", message: "Block description could not be updated. Please try again.", }); }); }; const handleCopyText = () => { const originURL = typeof window !== "undefined" && window.location.origin ? window.location.origin : ""; copyTextToClipboard( `${originURL}/${workspaceSlug}/projects/${projectId}/issues/${block.issue}` ).then(() => { setToastAlert({ type: "success", title: "Link Copied!", message: "Issue link copied to clipboard.", }); }); }; useEffect(() => { if (!block) return; reset({ ...block }); }, [reset, block]); return (