import { getTranslate } from "@/tolgee/server";
export const WebhookTableHeading = async () => {
const t = await getTranslate();
return (
<>
{t("common.edit")}
{t("common.webhook")}
{t("environments.integrations.webhooks.source")}
{t("common.surveys")}
{t("environments.integrations.webhooks.triggers")}
{t("common.updated")}
>
);
};