From 0c0f2626753a28bae467ec28d441570968398765 Mon Sep 17 00:00:00 2001 From: Sasha Mysak Date: Mon, 15 Jan 2024 16:30:44 +0100 Subject: [PATCH] fix: rebase on 13.5 --- apps/web/app/future/auth/verify/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/app/future/auth/verify/page.tsx b/apps/web/app/future/auth/verify/page.tsx index 3f982c46438d57..2fd61682503875 100644 --- a/apps/web/app/future/auth/verify/page.tsx +++ b/apps/web/app/future/auth/verify/page.tsx @@ -1,5 +1,5 @@ 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"; @@ -7,5 +7,5 @@ import { getServerSideProps } from "@server/lib/auth/verify/getServerSideProps"; export default WithLayout({ getLayout: null, Page: VerifyPage, - getData: withAppDir(getServerSideProps), + getData: withAppDirSsr(getServerSideProps), })<"P">;