fix getAllPromocodes request item limit

This commit is contained in:
nflnkr 2024-04-14 20:15:48 +03:00
parent 1d9be4f223
commit 32e9ccc640

@ -51,7 +51,7 @@ export const getAllPromocodes = async () => {
let page = 0;
while (true) {
const promocodeList = await getPromocodeList({
limit: 2,
limit: 100,
filter: {
active: true,
},