Skip to content

Commit

Permalink
fix: rebase on 13.5
Browse files Browse the repository at this point in the history
  • Loading branch information
r4zendev authored and hbjORbj committed Jan 19, 2024
1 parent c6a02b1 commit ab67628
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/web/app/future/auth/setup/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import Setup from "@pages/auth/setup";
import { withAppDir } from "app/AppDirSSRHOC";
import { withAppDirSsr } from "app/WithAppDirSsr";
import { WithLayout } from "app/layoutHOC";
import type { InferGetServerSidePropsType } from "next";

import { getServerSideProps } from "@server/lib/setup/getServerSideProps";

export default WithLayout({
getLayout: null,
Page: Setup,
getData: withAppDir(getServerSideProps),
getData: withAppDirSsr<InferGetServerSidePropsType<typeof getServerSideProps>>(getServerSideProps),
})<"P">;
1 change: 1 addition & 0 deletions apps/web/pages/d/[link]/[slug].tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use client";

import { Booker } from "@calcom/atoms";
import { getBookerWrapperClasses } from "@calcom/features/bookings/Booker/utils/getBookerWrapperClasses";
Expand Down

0 comments on commit ab67628

Please sign in to comment.