Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrobertbrooks committed Oct 13, 2023
1 parent da45e9c commit cede0dd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/nextjs/pages/products/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ export const getServerSideProps = (async ({ query, res, resolvedUrl }) => {
// Pagination data.
const pagination = getPaginationFromQuery(query);
const result = await getAllFilteredVariants(filters, order, pagination);
console.log({ result });
const { variants, itemCount } = result;
const { currentPage, pageSize } = pagination;
const pageCount = Math.ceil(itemCount / pageSize);
Expand Down

0 comments on commit cede0dd

Please sign in to comment.