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 698c466 commit 7a6511d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions apps/web/app/future/auth/sso/[provider]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import Provider from "@pages/auth/sso/[provider]";
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/auth/sso/[provider]/getServerSideProps";

export default WithLayout({
getLayout: null,
Page: Provider,
getData: withAppDir(getServerSideProps),
getData: withAppDirSsr<InferGetServerSidePropsType<typeof getServerSideProps>>(getServerSideProps),
})<"P">;
4 changes: 2 additions & 2 deletions apps/web/app/future/auth/sso/direct/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import DirectSSOLogin from "@pages/auth/sso/direct";
import { withAppDir } from "app/AppDirSSRHOC";
import { withAppDirSsr } from "app/WithAppDirSsr";
import { WithLayout } from "app/layoutHOC";

import { getServerSideProps } from "@server/lib/auth/sso/direct/getServerSideProps";

export default WithLayout({
getLayout: null,
Page: DirectSSOLogin,
getData: withAppDir(getServerSideProps),
getData: withAppDirSsr(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 7a6511d

Please sign in to comment.