diff --git a/README.md b/README.md index 98525c66c9..286d29bc95 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ npm install npm run dev ``` -## Run functions locally using vercel +## Run functions locally Run a local build to run the functions using the following command: diff --git a/content/200-concepts/100-components/02-prisma-client/054-pagination.mdx b/content/200-concepts/100-components/02-prisma-client/054-pagination.mdx index fa05090d33..e7293e3e27 100644 --- a/content/200-concepts/100-components/02-prisma-client/054-pagination.mdx +++ b/content/200-concepts/100-components/02-prisma-client/054-pagination.mdx @@ -23,7 +23,6 @@ const results = await prisma.post.findMany({ ![](../../../doc-images/offset-skip-take.png) - To implement pages of results, you would just `skip` the number of pages multiplied by the number of results you show per page. ### ✔ Pros of offset pagination