OUMERZOUG Haïtham
OUMERZOUG Haïtham
You have to add **max** value in find method ie. `kcAdminClient.users.find({ max: 300 });`
U welcome @valerii15298 , if you want a pagination use **first** attribute `kcAdminClient.users.find({ first : 0 , max: 100 }); // 0 to 100 users`
You have to specify the toast title. ` const showToast = (type, title, body) => { Toast.show({ type: type, text1: title, text2: body, // ...other options }); }; `
@pankhiprasher I think you have to set **headlees** to true ` const browser = await puppeteer.launch({ args: ['--no-sandbox'], headless: true, // !! true executablePath: '/usr/bin/chromium-browser', }); `
You repo solve the problem, but you have an issue when running `npm install` command. It's running muilpe times.