import React from "react"; import { CodeView } from "@/src/components/ui/CodeJsonViewer"; export const WebhookSecretRender = ({ webhookSecret, }: { webhookSecret: string; }) => { return ( <>
Webhook Secret
This secret can only be viewed once. You can regenerate it in the automation settings if needed. Use this secret to verify webhook signatures in your endpoint.
); };