Update pagination limit

This commit is contained in:
marzban-dev
2025-05-03 23:31:32 +03:30
parent 7a569869d9
commit 5ba00fd5dd
@@ -39,8 +39,8 @@ const useGetProducts = (params?: ComputedRef<GetProductsFilters>) => {
category: params?.category,
price_gte: params?.price_gte,
price_lte: params?.price_lte,
offset: Number(params?.page) * 9 - 9,
limit: 9
offset: Number(params?.page) * 12 - 12,
limit: 12
}
}
);