* Adds PageWrapper to pages * Add missing PageWrapper --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
import Workflows from "@calcom/features/ee/workflows/pages/index";
|
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
import type { CalPageWrapper } from "@components/PageWrapper";
|
|
|
|
const WorkflowsPage = Workflows as CalPageWrapper;
|
|
WorkflowsPage.PageWrapper = PageWrapper;
|
|
|
|
export default WorkflowsPage;
|