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 2013328 commit 0c0f262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/app/future/auth/verify/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import VerifyPage from "@pages/auth/verify";
import { withAppDir } from "app/AppDirSSRHOC";
import { withAppDirSsr } from "app/WithAppDirSsr";
import { WithLayout } from "app/layoutHOC";

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

export default WithLayout({
getLayout: null,
Page: VerifyPage,
getData: withAppDir(getServerSideProps),
getData: withAppDirSsr(getServerSideProps),
})<"P">;

0 comments on commit 0c0f262

Please sign in to comment.