Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Jan 17, 2024
1 parent f9e7caf commit c64e9f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/app/future/video/[uid]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Page from "@pages/video/[uid]";
import Page, { type JoinCallPageProps } from "@pages/video/[uid]";
import { withAppDirSsr } from "app/WithAppDirSsr";
import { _generateMetadata } from "app/_utils";
import { WithLayout } from "app/layoutHOC";
Expand All @@ -13,6 +13,6 @@ export const generateMetadata = async () =>
(t) => t("quick_video_meeting")
);

const getData = withAppDirSsr(getServerSideProps);
const getData = withAppDirSsr<JoinCallPageProps>(getServerSideProps);

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

0 comments on commit c64e9f4

Please sign in to comment.