"use client"; // components // ui import { useTranslation } from "@plane/i18n"; import { Button } from "@plane/propel/button"; import type { IWebhook } from "@plane/types"; // types import { WebhookSecretKey } from "./form"; type Props = { handleClose: () => void; webhookDetails: IWebhook; }; export const GeneratedHookDetails: React.FC = (props) => { const { handleClose, webhookDetails } = props; const { t } = useTranslation(); return ( <>

{t("workspace_settings.key_created")}

{t("workspace_settings.copy_key")}

); };