diff --git a/prisma/dev.db b/prisma/dev.db index fbaae4f..1261947 100644 Binary files a/prisma/dev.db and b/prisma/dev.db differ diff --git a/src/app/story/page.tsx b/src/app/story/page.tsx index fa2ca84..d236a71 100644 --- a/src/app/story/page.tsx +++ b/src/app/story/page.tsx @@ -4,13 +4,10 @@ import { columns } from "./columns"; import { getStoriesWithGenres } from "app/lib/get"; import { Genre } from "@prisma/client"; -export const dynamic = 'force-dynamic' -export const revalidate = 1 - export type StoryWithGenres = Story & { genres: Array } -const stories: Array = await getStoriesWithGenres() export default async function Page() { + const stories: Array = await getStoriesWithGenres() return (