diff --git a/src/app/stories/[storyId]/page.tsx b/src/app/stories/[storyId]/page.tsx index c98cdf84..91e577c3 100644 --- a/src/app/stories/[storyId]/page.tsx +++ b/src/app/stories/[storyId]/page.tsx @@ -20,7 +20,6 @@ import { revalidateTag } from "next/cache"; import { cookies } from "next/headers"; import { notFound } from "next/navigation"; import { cache } from "react"; -import { z } from "zod"; import { MyStoryMenu } from "../../../components/myStoryMenu"; import styles from "./page.module.scss"; @@ -81,10 +80,6 @@ export const generateStaticParams = async () => { })); }; -const questionLimitationSchema = z.object({ - desktopOnly: z.boolean(), -}); - const MyStoryMenuServer = async ({ story }: { story: Story }) => { const session = await getUserSession().catch((e) => { console.error(e);