Oleg Gun

Results 143 comments of Oleg Gun

do you mean ``` useEffect(() => { if (fields.length < 5) { fields.push(); } }, fields); ``` thsi results in error from react ``` React Hook useEffect was passed a...

Hi taion I see the same problem for ``` ```

i'm not agree with you. my argument is a then-catch flow from promises ```js new Promise(resolve => { setImmediate(() => { resolve(); }); }) .catch(() => { console.log("will NOT come...

I mean if you ever finish express5 which is going to support promises, this is what people will expect from its behavior

i believe when you want to pass an error between error-middlewares you should call `next(error)` but not `next()` ```js app.use(function (err, req, res, next) { next(err); }) ``` if you...

```js new Promise((resolve, reject) => { setImmediate(() => { reject(new Error()); }); setImmediate(() => { resolve(); }); }) .then(() => { console.log("then"); }) .catch(e => { console.log("catch", e); }); ```...

@sokra the community struggles with this bug, can you please spend some time and advice on what was changed and how to migrate?

@alexander-akait there were some API changes in webpack 5 related to how it works with plugins (correct me if i'm wrong but I believe context was changed) . as a...

@mcat95 you can check this issue https://github.com/webpack/webpack/issues/12408

Hi there! very good lib but indeed lacks support of pagination for example I'd like to have simple list with pagination so my BE returns ```js {total:100,list:[...]} ``` there is...