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 committed Jan 18, 2024
1 parent 5b90051 commit 302bacf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/web/app/future/auth/forgot-password/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import SetNewUserPassword from "@pages/auth/forgot-password/[id]";
import { withAppDir } from "app/AppDirSSRHOC";
import { withAppDirSsr } from "app/WithAppDirSsr";
import { _generateMetadata } from "app/_utils";
import { WithLayout } from "app/layoutHOC";

Expand All @@ -15,5 +15,5 @@ export const generateMetadata = async () => {
export default WithLayout({
getLayout: null,
Page: SetNewUserPassword,
getData: withAppDir(getServerSideProps),
getData: withAppDirSsr(getServerSideProps),
})<"P">;
4 changes: 2 additions & 2 deletions apps/web/app/future/auth/forgot-password/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ForgotPassword from "@pages/auth/forgot-password";
import { withAppDir } from "app/AppDirSSRHOC";
import { withAppDirSsr } from "app/WithAppDirSsr";
import { _generateMetadata } from "app/_utils";
import { WithLayout } from "app/layoutHOC";

Expand All @@ -15,5 +15,5 @@ export const generateMetadata = async () => {
export default WithLayout({
getLayout: null,
Page: ForgotPassword,
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 302bacf

Please sign in to comment.