Files
formbricks/apps/web/modules/integrations/webhooks/components/webhook-table-heading.tsx
Dhruwang Jariwala a5fa876aa3 feat: refactor translation key management (#6717)
Co-authored-by: Piyush Gupta <piyushguptaa2z123@gmail.com>
Co-authored-by: Piyush Gupta <56182734+gupta-piyush19@users.noreply.github.com>
Co-authored-by: Victor Hugo dos Santos <115753265+victorvhs017@users.noreply.github.com>
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
Co-authored-by: Matti Nannt <matti@formbricks.com>
Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
Co-authored-by: Johannes <johannes@formbricks.com>
Co-authored-by: Johannes <72809645+jobenjada@users.noreply.github.com>
2025-10-23 14:53:11 +00:00

18 lines
806 B
TypeScript

import { getTranslate } from "@/lingodotdev/server";
export const WebhookTableHeading = async () => {
const t = await getTranslate();
return (
<>
<div className="grid h-12 grid-cols-12 content-center rounded-lg bg-slate-100 text-left text-sm font-semibold text-slate-900">
<span className="sr-only">{t("common.edit")}</span>
<div className="col-span-3 pl-6">{t("common.webhook")}</div>
<div className="col-span-1 text-center">{t("environments.integrations.webhooks.source")}</div>
<div className="col-span-4 text-center">{t("common.surveys")}</div>
<div className="col-span-2 text-center">{t("environments.integrations.webhooks.triggers")}</div>
<div className="col-span-2 text-center">{t("common.updated")}</div>
</div>
</>
);
};