* fix: Error on webhooks page exporting client only comp directly * Wrap correctly, WebhooksView contains dynamic logic in the SettingsHeader
17 lines
461 B
TypeScript
17 lines
461 B
TypeScript
import { _generateMetadata } from "app/_utils";
|
|
|
|
import WebhooksView from "@calcom/features/webhooks/pages/webhooks-view";
|
|
import { APP_NAME } from "@calcom/lib/constants";
|
|
|
|
export const generateMetadata = async () =>
|
|
await _generateMetadata(
|
|
(t) => t("webhooks"),
|
|
(t) => t("add_webhook_description", { appName: APP_NAME })
|
|
);
|
|
|
|
const WebhooksViewServerWrapper = async () => {
|
|
return <WebhooksView />;
|
|
};
|
|
|
|
export default WebhooksViewServerWrapper;
|