This commit is contained in:
marzban-dev
2025-05-09 21:20:46 +03:30
parent 02e34a2994
commit f835e74b70
3 changed files with 4 additions and 4 deletions
@@ -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) * 12 - 12,
limit: 12
offset: Number(params?.page) * 15 - 15,
limit: 15
}
}
);