endze1t

Results 7 comments of endze1t

> Here's another option? > > ``` > puppeteer.launch({ > args: [ > '--disable-features=DialMediaRouteProvider', > ], > }); > ``` > > Assumes you're not using whatever features the "DialMediaRouteProvider"...

Hey @marcfilipan could you maybe take a look at it?

There is also a open Pull requests to fix this issue: https://github.com/Tidwell/nodeSteam/pull/32

> @Johnson444 well for now I define a conditionnal component like : > > `const StickyWrapper = isLargeScreen ? StickyBox : React.Fragment;` > > Where `isLargeScreen` is your test to...

If that helps: ```js if (!result.headers || !result.headers['set-cookie'] || result.headers['set-cookie'].length == 0) { console.log(body); console.log(result.headers); throw new Error('No Set-Cookie header in result'); } ``` body: ``` { steamID: '', nonce:...

Greetings, I also struggle with memory leaks. I'm using a custom solution for autoplay, because i want animated dots. If i'm using setInterval, the ram will leak pretty fast. Here...

Hello, i probably found the source of the memory leak it's the function `checkImagesLoad()` https://github.com/akiran/react-slick/blob/master/src/inner-slider.js#L298 After removing this function in `componentDidUpdate()`, the memory leak is gone.