* add a/b test flags for apps, workflows, getting-started, settings/teams * Finalize * Discard changes to apps/web/app/layoutHOC.tsx * fix: types * manual: address Keith's comments --------- Co-authored-by: Benny Joo <sldisek783@gmail.com> Co-authored-by: Omar López <zomars@me.com>
14 lines
446 B
TypeScript
14 lines
446 B
TypeScript
import { _generateMetadata } from "app/_utils";
|
|
import { WithLayout } from "app/layoutHOC";
|
|
|
|
import { getLayout } from "@calcom/features/MainLayoutAppDir";
|
|
import LegacyPage from "@calcom/features/ee/workflows/pages/index";
|
|
|
|
export const generateMetadata = async () =>
|
|
await _generateMetadata(
|
|
(t) => t("workflows"),
|
|
(t) => t("workflows_to_automate_notifications")
|
|
);
|
|
|
|
export default WithLayout({ getLayout, Page: LegacyPage })<"P">;
|